diff --git a/README.txt b/README.txt index b077470..60d252d 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ -Creatures MOB-Engine -==================== +Mod/Modpack Creatures +===================== Copyright (c) 2015 BlockMen Version: 2.0 Beta @@ -23,7 +23,7 @@ see each MOB-Module for detailed informations. Github: ~~~~~~~ -https://github.com/BlockMen/creatures_mob_engine +https://github.com/BlockMen/cme Forum: diff --git a/bower.json b/bower.json index 2d95b7c..f358d8f 100644 --- a/bower.json +++ b/bower.json @@ -1,21 +1,25 @@ { - "name": "creatures", - "description": "This mod adds several creatures to Minetest, including zombies, ghosts, and sheep.\n", + "name": "Creatures MOB-Engine", + "description": "A Mod(pack) for Minetest that provides a MOB-Engine and adds several creatures to the game.\n", "keywords": [ "creatures", "mobs", + "MOB", + "MOB-Engine", + "Creatures MOB-Engine", + "cme", "zombies", "sheep", "ghost", "monsters", "hostile" ], - "homepage": "https://github.com/BlockMen/creatures", + "homepage": "https://github.com/BlockMen/cme", "forum": "http://forum.minetest.net/viewtopic.php?f=11&t=8638", "screenshots": [ - "https://raw.githubusercontent.com/BlockMen/creatures/master/screenshot.png" + "https://raw.githubusercontent.com/BlockMen/cme/master/screenshot.png" ], "authors": [ "BlockMen" ] -} \ No newline at end of file +} diff --git a/creatures/README.txt b/creatures/README.txt index 397f196..ee119a5 100644 --- a/creatures/README.txt +++ b/creatures/README.txt @@ -1,121 +1,26 @@ -Minetest mod "Creatures" -======================= -by BlockMen (c) 2014 - 2015 +Creatures MOB-Engine +==================== +Copyright (c) 2015 BlockMen -Version: 1.1.5 Beta - -About -~~~~~ -This mod adds 2 hostile and 1 friendly mob to Minetest, so far zombies, ghosts and sheeps. - -Zombies can spawn to every day-time in the world as long there is not to much light. -So you will find some in caves, dark forests and ofc a lot at night. If they notice you they will attack. -Zombies have 20 HP (like players) and drop rotten flesh randomly. - -Ghosts only spawn at night-time. Also they don't spawn underground and are a bit more rare than zombies. -They are flying in the world and attack you aswell if they notice you. -Ghosts have 12 HP and don't drop any items atm (might be changed if i have an idea what they could drop). - -Sheeps spawn only at day-time and are friendly mobs. They remain around 5 minutes in the world unless there -are other sheeps around, then there is no fixed limit. If there is grass (dirt with grass) they eat the grass -and get new wool that way. They will follow you if you have Wheat in your hand. -Sheeps have 8 HP and drop 1-2 wool when punched or 2 wool when using shears. They need to eat grass until they can produce new wool. - -They can't harm you in your house (in case there is no door open). If it becomes day both mobs will take damage -by the sunlight, so they will die after a while. +Version: 2.0 Beta -Notice: Weapons and tools get damaged when hitting a zombie or ghost. The wearout is calculated on the damage amout -of the tools/weapons. The more damage they can do that longer they can be used. - -Example: -- Diamond Sword: 1500 uses -- Wooden Sword: 30 uses - -Crafting Shears: ------------ steel ingot -steel ingot stick +This mod provides an engine, that handles the base function for MOB in Minetest. +It offers an easy way to register MOB and allows to custom handling for the needs +of each mob. This engine aims to be a solid base, that has a good balance between +performance and functionality. +See API.txt for more informations on how to use this engine for mobs. - -License of source code: ------------------------ -(c) Copyright BlockMen (2014-2015), modified zlib-License - +License: +~~~~~~~~ +Code: +(c) Copyright 2015 BlockMen; modified zlib-License see "LICENSE.txt" for details. +Media(textures and other media): +(c) Copyright (2014-2015) BlockMen; CC-BY-SA 3.0 - -Licenses of sounds ------------------- -following sounds are created by Under7dude (freesound.org) -- creatures_zombie.1.ogg, CC0 -- creatures_zombie.2.ogg, CC0 -- creatures_zombie.3.ogg, CC0 -- creatures_zombie_death.ogg, CC0 - -following sounds are created by confusion_music (freesound.org) -- creatures_sheep.1.ogg, CC-BY 3.0 -- creatures_sheep.2.ogg, CC-BY 3.0 - -following sound is created by Yuval (freesound.org) -- creatures_sheep.3.ogg, CC-BY 3.0 - -following sound is created by SmartWentCody (freesound.org) -- creatures_shears.ogg, CC-BY 3.0 - - -License of all other Media (textures, meshes/models, sounds): -------------------------------------------------------------- -(c) Copyright BlockMen (2014-2015), CC BY-SA 3.0 - - - -Changelog: ----------- -# 1.0.1 - - fixed incompatibility with pyramids mod - -# 1.1 - - new mob: sheep - - fixed crash caused by unknown node - - fixed spawning, added spawn limit - - fixed weapon & tool damage - - tweaked and restructured code - - ghosts only spawn on grass and desert-sand blocks - - ghosts have now 12 HP (instead 15 HP) - - zombies don't jump over fences anymore - -# 1.1.1 - - Zombies have also a maximum lifetime now - - Use line_of_sight() befor attacking - - Fix different crashes - - Experimental spawning control - -# 1.1.2 - - Sheeps follow you when holding wheat - - Added Shears (rightclick) - - Items are only droped (without player action) with builtin_mod - -# 1.1.3 - - Fixed crash caused by spawning control - - Prevent the mobs flood once and for all - - Drop items aswell when settings define max lifetime - -# 1.1.4 - - Fixed mobs flood (yes, really!) - - Sheep drop raw flesh on death - - Sheep are not stuck that often in valleys; spawning less - - Improved jumping of zombies and sheep - -# 1.1.5 - - Fixed global variable (by vitaminx) - - Added description.txt and screenshot (by ExcaliburZero) - - Fixed sounds (zombie and sheep) - - Using [colorize modifier instead of texture overlays - -This program is free software. It comes without any warranty, to -the extent permitted by applicable law. You can redistribute it -and/or modify it under the terms of the Do What The Fuck You Want -To Public License, Version 2, as published by Sam Hocevar. See -http://sam.zoy.org/wtfpl/COPYING for more details. +Github: +~~~~~~~ +https://github.com/BlockMen/cme/creatures diff --git a/creatures/screenshot.png b/creatures/screenshot.png deleted file mode 100644 index e288c9e..0000000 Binary files a/creatures/screenshot.png and /dev/null differ diff --git a/ghost/LICENSE.txt b/ghost/LICENSE.txt new file mode 100644 index 0000000..d3eb5aa --- /dev/null +++ b/ghost/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2015 BlockMen + + +This software is provided 'as-is', without any express or implied warranty. In no +event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to the +following restrictions: + + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software in a +product, an acknowledgment in the product documentation is required. + +2. Altered source versions must be plainly marked as such, and must not +be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/ghost/README.txt b/ghost/README.txt new file mode 100644 index 0000000..b990321 --- /dev/null +++ b/ghost/README.txt @@ -0,0 +1,26 @@ +Ghost for Creatures MOB-Engine +============================== +Copyright (c) 2015 BlockMen + +Version: 2.0 Beta + + +Adds ghosts to Minetest (requires Creatures MOB-Engine). +Ghosts only spawn at night-time and not underground. +They are flying in the world and attack you players if they notice them. +Ghosts have 12 HP and don't drop any items atm. + + +License: +~~~~~~~~ +Code: +(c) Copyright 2015 BlockMen; modified zlib-License +see "LICENSE.txt" for details. + +Media(sounds, textures and meshes/models): +(c) Copyright (2014-2015) BlockMen; CC-BY-SA 3.0 + + +Github: +~~~~~~~ +https://github.com/BlockMen/cme/ghost diff --git a/ghost/depends.txt b/ghost/depends.txt new file mode 100644 index 0000000..6d72c29 --- /dev/null +++ b/ghost/depends.txt @@ -0,0 +1,2 @@ +creatures +default diff --git a/ghost/init.lua b/ghost/init.lua new file mode 100644 index 0000000..913efa5 --- /dev/null +++ b/ghost/init.lua @@ -0,0 +1,110 @@ +--= Ghost for Creatures MOB-Engine (cme) =-- +-- Copyright (c) 2015 BlockMen +-- +-- init.lua +-- +-- This software is provided 'as-is', without any express or implied warranty. In no +-- event will the authors be held liable for any damages arising from the use of +-- this software. +-- +-- Permission is granted to anyone to use this software for any purpose, including +-- commercial applications, and to alter it and redistribute it freely, subject to the +-- following restrictions: +-- +-- 1. The origin of this software must not be misrepresented; you must not +-- claim that you wrote the original software. If you use this software in a +-- product, an acknowledgment in the product documentation is required. +-- 2. Altered source versions must be plainly marked as such, and must not +-- be misrepresented as being the original software. +-- 3. This notice may not be removed or altered from any source distribution. +-- + + +local def = { + -- general + name = "creatures:ghost", + stats = { + hp = 20, + lifetime = 300, -- 5 Minutes + can_burn = true, + can_fly = true, + has_falldamage = false, + has_kockback = true, + light = {min = 0, max = 8}, + hostile = true, + }, + + modes = { + idle = {chance = 0.65, duration = 3, update_yaw = 6},--dur = 8 is gut + fly = {chance = 0.25, duration = 2.5, moving_speed = 2, max_height = 25, target_offset = 2.1}, + fly_2 = {chance = 0.1, duration = 4, moving_speed = 1.6, update_yaw = 3, max_height = 25, target_offset = 2.5}, + -- special modes + attack = {chance = 0, moving_speed = 2.6}, + }, + + model = { + mesh = "ghost.b3d", + textures = {"creatures_ghost.png"}, + collisionbox = {-0.25, 0.2, -0.3, 0.25, 1.4, 0.3}, + rotation = -90.0, + animations = { + idle = {start = 0, stop = 80, speed = 15}, + fly = {start = 168, stop = 188, speed = 12}, + fly_2 = {start = 168, stop = 188, speed = 10}, + attack = {start = 168, stop = 188, speed = 25}, + -- death + }, + }, + + sounds = { + on_damage = {name = "creatures_ghost_hit", gain = 0.4, distance = 10}, + on_death = {name = "creatures_ghost_death", gain = 0.7, distance = 10}, + random = { + idle = {name = "creatures_ghost", gain = 0.5, distance = 10, time_min = 23}, + }, + }, + + combat = { + attack_damage = 2, -- in hp + attack_speed = 1.1, -- time in seconds between hits + attack_radius = 0.9, -- radius of hit range + + search_enemy = true, + search_timer = 2, + search_radius = 12, --in nodes + search_type = "player", --types = {all, hostile, nonhostile, player, mates} + --search_xray = false, -- can see through walls? + }, + + spawning = { + abm_nodes = { + spawn_on = {"default:gravel", "default:dirt_with_grass", "default:dirt", + "group:leaves", "group:sand"}, + }, + abm_interval = 40, + abm_chance = 7300, + max_number = 1, -- per mapblock + number = 1, + time_range = {min = 18500, max = 4000}, -- 0-24000 + light = {min = 0, max = 8}, + height_limit = {min = 0, max = 80}, + + spawn_egg = { + description = "Ghost Spawn-Egg", + texture = "creatures_spawn_egg.png^[colorize:#27ca", + }, + + spawner = { + range = 8, -- defines area withing mobs are spawned + number = 6, -- maxmimum number of mobs spawned in area defined via range + light = {min = 0, max = 8}, -- additional light check + } + }, + + --drops = { + -- {"creatures:rotten_flesh", {min = 1, max = 2}, chance = 0.7}, + --}, + +} + +creatures.register_mob(def) diff --git a/ghost/models/ghost.b3d b/ghost/models/ghost.b3d new file mode 100644 index 0000000..e7c9e1f Binary files /dev/null and b/ghost/models/ghost.b3d differ diff --git a/ghost/sounds/creatures_ghost.1.ogg b/ghost/sounds/creatures_ghost.1.ogg new file mode 100644 index 0000000..18a0734 Binary files /dev/null and b/ghost/sounds/creatures_ghost.1.ogg differ diff --git a/ghost/sounds/creatures_ghost.2.ogg b/ghost/sounds/creatures_ghost.2.ogg new file mode 100644 index 0000000..21a0be0 Binary files /dev/null and b/ghost/sounds/creatures_ghost.2.ogg differ diff --git a/ghost/sounds/creatures_ghost_death.ogg b/ghost/sounds/creatures_ghost_death.ogg new file mode 100644 index 0000000..aa2d0c7 Binary files /dev/null and b/ghost/sounds/creatures_ghost_death.ogg differ diff --git a/ghost/sounds/creatures_ghost_hit.ogg b/ghost/sounds/creatures_ghost_hit.ogg new file mode 100644 index 0000000..078bf04 Binary files /dev/null and b/ghost/sounds/creatures_ghost_hit.ogg differ diff --git a/ghost/textures/creatures_ghost.png b/ghost/textures/creatures_ghost.png new file mode 100644 index 0000000..9d7ea20 Binary files /dev/null and b/ghost/textures/creatures_ghost.png differ diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..1fba4c2 Binary files /dev/null and b/screenshot.png differ diff --git a/sheep/LICENSE.txt b/sheep/LICENSE.txt new file mode 100644 index 0000000..d3eb5aa --- /dev/null +++ b/sheep/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2015 BlockMen + + +This software is provided 'as-is', without any express or implied warranty. In no +event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to the +following restrictions: + + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software in a +product, an acknowledgment in the product documentation is required. + +2. Altered source versions must be plainly marked as such, and must not +be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/sheep/README.txt b/sheep/README.txt new file mode 100644 index 0000000..3864be2 --- /dev/null +++ b/sheep/README.txt @@ -0,0 +1,38 @@ +Sheep for Creatures MOB-Engine +============================== +Copyright (c) 2015 BlockMen + +Version: 2.0 Beta + + +Adds sheep to Minetest (requires Creatures MOB-Engine). +Sheep spawn only at day-time and are friendly and remain around 5 minutes in the world. +You can tame them by feading them with wheat. If there is grass they eat the grass +and regrow wool that way. They will follow you if you have Wheat in your hand. +Sheep have 8 HP and drop 1-2 wool when punched or 1-3 wool when using shears. + +Sheers are crafted by using 2 steel ingots and one stick in following shape: + + - ingot +ingot stick + + +License: +~~~~~~~~ +Code: +(c) Copyright 2015 BlockMen; modified zlib-License +see "LICENSE.txt" for details. + +Media(textures and meshes/models): +(c) Copyright (2014-2015) BlockMen; CC-BY-SA 3.0 + +Sounds: +- creatures_sheep.1.ogg, confusion_music(https://freesound.org/people/confusion_music) CC-BY 3.0 +- creatures_sheep.2.ogg, confusion_music(https://freesound.org/people/confusion_music) CC-BY 3.0 +- creatures_sheep.3.ogg, Yuval(https://freesound.org/people/Yuval) CC-BY 3.0 +- creatures_shears.ogg, SmartWentCody(https://freesound.org/people/SmartWentCody) CC-BY 3.0 + + +Github: +~~~~~~~ +https://github.com/BlockMen/cme/sheep diff --git a/sheep/depends.txt b/sheep/depends.txt new file mode 100644 index 0000000..62fdc3f --- /dev/null +++ b/sheep/depends.txt @@ -0,0 +1,4 @@ +creatures +default +farming? +wool? diff --git a/sheep/init.lua b/sheep/init.lua new file mode 100644 index 0000000..130b115 --- /dev/null +++ b/sheep/init.lua @@ -0,0 +1,188 @@ +--= Sheep for Creatures MOB-Engine (cme) =-- +-- Copyright (c) 2015 BlockMen +-- +-- init.lua +-- +-- This software is provided 'as-is', without any express or implied warranty. In no +-- event will the authors be held liable for any damages arising from the use of +-- this software. +-- +-- Permission is granted to anyone to use this software for any purpose, including +-- commercial applications, and to alter it and redistribute it freely, subject to the +-- following restrictions: +-- +-- 1. The origin of this software must not be misrepresented; you must not +-- claim that you wrote the original software. If you use this software in a +-- product, an acknowledgment in the product documentation is required. +-- 2. Altered source versions must be plainly marked as such, and must not +-- be misrepresented as being the original software. +-- 3. This notice may not be removed or altered from any source distribution. +-- + + +-- shears +core.register_tool(":creatures:shears", { + description = "Shears", + inventory_image = "creatures_shears.png", +}) + +core.register_craft({ + output = 'creatures:shears', + recipe = { + {'', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:stick'}, + } +}) + +local function shear(self, drop_count, sound) + if self.has_wool == true then + self.has_wool = false + local pos = self.object:getpos() + + if sound then + core.sound_play("creatures_shears", {pos = pos, gain = 1, max_hear_distance = 10}) + end + self.object:set_properties({textures = {"creatures_sheep_shaved.png"}}) + creatures.dropItems(pos, {{"wool:white", drop_count}}) + end +end + +local def = { + name = "creatures:sheep", + stats = { + hp = 8, + lifetime = 450, -- 7,5 Minutes + can_jump = 1, + can_swim = true, + can_burn = true, + can_panic = true, + has_falldamage = true, + has_kockback = true, + }, + + model = { + mesh = "creatures_sheep.x", + textures = {"creatures_sheep.png"}, + collisionbox = {-0.5, -0.01, -0.55, 0.5, 1.1, 0.55}, + rotation = -90.0, + animations = { + idle = {start = 0, stop = 80, speed = 15}, + walk = {start = 81, stop = 100, speed = 18}, + walk_long = {start = 81, stop = 100, speed = 18}, + eat = {start = 107, stop = 185, speed = 12, loop = false}, + follow = {start = 81, stop = 100, speed = 15}, + --death = {start = 0, stop = 80, speed = 15, loop = false, duration = 1}, + }, + }, + + sounds = { + on_damage = {name = "creatures_sheep", gain = 1.0, distance = 10}, + on_death = {}, + swim = {name = "creatures_splash", gain = 1.0, distance = 10,}, -- played whenever moving in(to) water + random = { + idle = {name = "creatures_sheep", gain = 0.6, distance = 10, time_min = 23}, + }, + }, + + modes = { + idle = {chance = 0.5, duration = 10, update_yaw = 8}, + walk = {chance = 0.14, duration = 4.5, moving_speed = 1.3}, + walk_long = {chance = 0.11, duration = 8, moving_speed = 1.3, update_yaw = 5}, + -- special modes + follow = {chance = 0, duration = 20, radius = 4, timer = 5, moving_speed = 1, items = {"farming:wheat"}}, + eat = {chance = 0.25, + duration = 4, + nodes = { + "default:grass_1", "default:grass_2", "default:grass_3", + "default:grass_4", "default:grass_5", "default:dirt_with_grass" + } + }, + }, + + drops = function(self) + local items = {{"creatures:flesh"}} + if self.has_wool then + table.insert(items, {"wool:white", {min = 1, max = 2}}) + end + creatures.dropItems(self.object:getpos(), items) + end, + + spawning = { + abm_nodes = { + spawn_on = {"default:dirt_with_grass"}, + }, + abm_interval = 55, + abm_chance = 7800, + max_number = 1, -- per mapblock(16x16x16) + number = {min = 1, max = 3}, + time_range = {min = 5100, max = 18300}, -- 0-24000 + light = {min = 10, max = 15}, + height_limit = {min = 0, max = 25}, + + spawn_egg = { + description = "Sheep Spawn-Egg", + texture = "creatures_egg_sheep.png", + }, + + spawner = { + range = 8, -- defines area withing mobs are spawned + player_range = 20, -- defines at what distance spawner gets activated + number = 6, -- maxmimum number of mobs spawned in area defined via range + light = {min = 2, max = 15}, -- additional light check + } + }, + + on_punch = function(self, puncher) + shear(self) + end, + + get_staticdata = function(self) + return { + has_wool = self.has_wool + } + end, + + on_activate = function(self, staticdata) + if self.has_wool == false then + self.object:set_properties({textures = {"creatures_sheep_shaved.png"}}) + end + end, + + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item then + local name = item:get_name() + if name == "farming:wheat" then + self.target = clicker + self.mode = "follow" + self.modetimer = 0 + -- play eat sound? + item:take_item() + elseif name == "creatures:shears" and self.has_wool then + shear(self, math.random(2, 3), true) + item:add_wear(65535/100) + end + if not core.setting_getbool("creative_mode") then + clicker:set_wielded_item(item) + end + end + + return true + end, + + on_step = function(self, dtime) + if self.has_wool == nil then + self.has_wool = true + end + if self.mode == "eat" and self.eat_node then + self.regrow_wool = true + end + if self.last_mode == "eat" and self.modetimer == 0 and self.regrow_wool then + self.has_wool = true + self.regrow_wool = nil + self.object:set_properties({textures = {"creatures_sheep.png"}}) + end + end +} + +creatures.register_mob(def) diff --git a/sheep/models/creatures_sheep.x b/sheep/models/creatures_sheep.x new file mode 100644 index 0000000..1a6d7d5 --- /dev/null +++ b/sheep/models/creatures_sheep.x @@ -0,0 +1,6751 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.020581, 0.043608, 0.162447, 1.000000;; + } + Frame Armature_Root { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.030899,-0.009276, 5.987902, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139217, 4.073730, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 1.460671,-0.139216,-3.633328, 1.000000;; + } + } // End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438651,-0.139217, 4.073730, 1.000000;; + } + } // End of Armature_Bone_003 + Frame Armature_Head { + FrameTransformMatrix { + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 4.052525, 3.788038, 1.000000;; + } + } // End of Armature_Head + Frame Armature_RR_leg { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + -1.438651,-0.139216,-3.633328, 1.000000;; + } + } // End of Armature_RR_leg + } // End of Armature_Root + Frame sheep { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000,-0.000000, 1.000000;; + } + Mesh { // sheep mesh + 348; + 1.998224; 6.883465; 8.227857;, + 1.998224; 6.883465;12.113163;, + 1.998223; 2.998159;12.113163;, + 1.998222; 2.998158; 8.227857;, + -1.887085; 2.998161;12.113163;, + -1.887084; 2.998160; 8.227857;, + 1.998222; 2.998158; 8.227857;, + 1.998223; 2.998159;12.113163;, + -1.887084; 2.998160; 8.227857;, + -1.887082; 6.883466; 8.227857;, + 1.998224; 6.883465; 8.227857;, + 1.998222; 2.998158; 8.227857;, + -1.887085; 2.998161;12.113163;, + 1.998223; 2.998159;12.113163;, + 1.998224; 6.883465;12.113163;, + -1.887081; 6.883467;12.113163;, + -1.887084; 2.998160; 8.227857;, + -1.887085; 2.998161;12.113163;, + -1.887081; 6.883467;12.113163;, + -1.887082; 6.883466; 8.227857;, + 1.998224; 6.883465; 8.227857;, + -1.887082; 6.883466; 8.227857;, + -1.887081; 6.883467;12.113163;, + 1.998224; 6.883465;12.113163;, + 0.595866; 5.025031; 3.317000;, + 0.595866; 5.025031; 6.125085;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 5.025031; 3.316999;, + 0.595865; 3.054348; 3.317000;, + 2.704728; 3.054348; 3.317000;, + 2.704729; 3.054348; 6.125084;, + 0.595866; 3.054348; 6.125085;, + 0.595866; 5.025031; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.595866; 3.054348; 6.125085;, + 0.595866; 5.025031; 6.125085;, + 0.595866; 5.025031; 6.125085;, + 0.595866; 3.054348; 6.125085;, + 2.704729; 3.054348; 6.125084;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 5.025031; 6.125084;, + 2.704729; 3.054348; 6.125084;, + 2.704728; 3.054348; 3.317000;, + 2.704729; 5.025031; 3.316999;, + 2.704729; 5.025031; 3.316999;, + 2.704728; 3.054348; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 2.445655; 4.782932; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 2.445655; 4.782932; 3.317000;, + 2.445655; 4.782932;-0.213580;, + 0.854939; 4.782932;-0.213580;, + 2.445655; 4.782932; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 2.445654; 3.296445;-0.213580;, + 2.445655; 4.782932;-0.213580;, + 2.445655; 3.296446; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 0.854938; 3.296446;-0.213580;, + 2.445654; 3.296445;-0.213580;, + 0.854939; 4.782932;-0.213580;, + 2.445655; 4.782932;-0.213580;, + 2.445654; 3.296445;-0.213580;, + 0.854938; 3.296446;-0.213580;, + 0.595866; 5.025031; 3.317000;, + 2.704729; 5.025031; 3.316999;, + 2.445655; 4.782932; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.595866; 5.025031; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 2.704728; 3.054348; 3.317000;, + 0.595865; 3.054348; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 2.445655; 3.296446; 3.317000;, + 0.854939; 3.296446; 3.317000;, + 0.854940; 4.782932; 3.317000;, + 0.854939; 4.782932;-0.213580;, + 0.854938; 3.296446;-0.213580;, + -0.241135;-2.928798; 3.317000;, + -2.349997;-2.928798; 3.316999;, + -2.349998;-2.928798; 6.125084;, + -0.241135;-2.928798; 6.125085;, + -0.241133;-4.899481; 3.317000;, + -0.241135;-4.899481; 6.125085;, + -2.349997;-4.899481; 6.125084;, + -2.349996;-4.899481; 3.317000;, + -0.241135;-2.928798; 3.317000;, + -0.241135;-2.928798; 6.125085;, + -0.241135;-4.899481; 6.125085;, + -0.241133;-4.899481; 3.317000;, + -0.241135;-2.928798; 6.125085;, + -2.349998;-2.928798; 6.125084;, + -2.349997;-4.899481; 6.125084;, + -0.241135;-4.899481; 6.125085;, + -2.349998;-2.928798; 6.125084;, + -2.349997;-2.928798; 3.316999;, + -2.349996;-4.899481; 3.317000;, + -2.349997;-4.899481; 6.125084;, + -2.349997;-2.928798; 3.316999;, + -2.090924;-3.170897; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -2.349996;-4.899481; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -0.500208;-3.170897;-0.213580;, + -2.090923;-3.170897;-0.213580;, + -2.090924;-3.170897; 3.317000;, + -2.090924;-3.170897; 3.317000;, + -2.090923;-3.170897;-0.213580;, + -2.090923;-4.657383;-0.213580;, + -2.090923;-4.657383; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -2.090923;-4.657383;-0.213580;, + -0.500206;-4.657383;-0.213580;, + -0.500207;-4.657383; 3.317000;, + -0.500208;-3.170897;-0.213580;, + -0.500206;-4.657383;-0.213580;, + -2.090923;-4.657383;-0.213580;, + -2.090923;-3.170897;-0.213580;, + -0.241135;-2.928798; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -2.090924;-3.170897; 3.317000;, + -2.349997;-2.928798; 3.316999;, + -0.241133;-4.899481; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.500208;-3.170897; 3.317000;, + -0.241135;-2.928798; 3.317000;, + -2.349996;-4.899481; 3.317000;, + -2.090923;-4.657383; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.241133;-4.899481; 3.317000;, + -0.500207;-4.657383; 3.317000;, + -0.500206;-4.657383;-0.213580;, + -0.500208;-3.170897;-0.213580;, + -0.500208;-3.170897; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.500206; 3.296446;-0.213580;, + -0.500208; 4.782932;-0.213580;, + -0.500208; 4.782932; 3.317000;, + -2.349996; 3.054348; 3.317000;, + -2.090923; 3.296446; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.500207; 3.296446; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -2.090924; 4.782932; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -0.500208; 4.782932;-0.213580;, + -0.500206; 3.296446;-0.213580;, + -2.090923; 3.296445;-0.213580;, + -2.090923; 4.782932;-0.213580;, + -2.090923; 3.296446; 3.317000;, + -2.090923; 3.296445;-0.213580;, + -0.500206; 3.296446;-0.213580;, + -0.500207; 3.296446; 3.317000;, + -2.090924; 4.782932; 3.317000;, + -2.090923; 4.782932;-0.213580;, + -2.090923; 3.296445;-0.213580;, + -2.090923; 3.296446; 3.317000;, + -0.500208; 4.782932; 3.317000;, + -0.500208; 4.782932;-0.213580;, + -2.090923; 4.782932;-0.213580;, + -2.090924; 4.782932; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -2.090924; 4.782932; 3.317000;, + -2.090923; 3.296446; 3.317000;, + -2.349996; 3.054348; 3.317000;, + -2.349998; 5.025031; 6.125084;, + -2.349997; 5.025031; 3.316999;, + -2.349996; 3.054348; 3.317000;, + -2.349997; 3.054348; 6.125084;, + -0.241135; 5.025031; 6.125085;, + -2.349998; 5.025031; 6.125084;, + -2.349997; 3.054348; 6.125084;, + -0.241135; 3.054348; 6.125085;, + -0.241135; 5.025031; 3.317000;, + -0.241135; 5.025031; 6.125085;, + -0.241135; 3.054348; 6.125085;, + -0.241133; 3.054348; 3.317000;, + -0.241133; 3.054348; 3.317000;, + -0.241135; 3.054348; 6.125085;, + -2.349997; 3.054348; 6.125084;, + -2.349996; 3.054348; 3.317000;, + -0.241135; 5.025031; 3.317000;, + -2.349997; 5.025031; 3.316999;, + -2.349998; 5.025031; 6.125084;, + -0.241135; 5.025031; 6.125085;, + 0.854939;-4.657383; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-3.170897;-0.213580;, + 0.854938;-4.657383;-0.213580;, + 2.704728;-4.899481; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.595866;-2.928798; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 0.595866;-2.928798; 3.317000;, + 2.704729;-2.928798; 3.316999;, + 2.445655;-3.170897; 3.317000;, + 0.854940;-3.170897; 3.317000;, + 0.854939;-3.170897;-0.213580;, + 2.445655;-3.170897;-0.213580;, + 2.445654;-4.657383;-0.213580;, + 0.854938;-4.657383;-0.213580;, + 2.445655;-4.657383; 3.317000;, + 0.854939;-4.657383; 3.317000;, + 0.854938;-4.657383;-0.213580;, + 2.445654;-4.657383;-0.213580;, + 2.445655;-3.170897; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 2.445654;-4.657383;-0.213580;, + 2.445655;-3.170897;-0.213580;, + 0.854940;-3.170897; 3.317000;, + 2.445655;-3.170897; 3.317000;, + 2.445655;-3.170897;-0.213580;, + 0.854939;-3.170897;-0.213580;, + 2.704729;-2.928798; 3.316999;, + 2.704728;-4.899481; 3.317000;, + 2.445655;-4.657383; 3.317000;, + 2.445655;-3.170897; 3.317000;, + 2.704729;-2.928798; 6.125084;, + 2.704729;-4.899481; 6.125084;, + 2.704728;-4.899481; 3.317000;, + 2.704729;-2.928798; 3.316999;, + 0.595866;-2.928798; 6.125085;, + 0.595866;-4.899481; 6.125085;, + 2.704729;-4.899481; 6.125084;, + 2.704729;-2.928798; 6.125084;, + 0.595866;-2.928798; 3.317000;, + 0.595865;-4.899481; 3.317000;, + 0.595866;-4.899481; 6.125085;, + 0.595866;-2.928798; 6.125085;, + 0.595865;-4.899481; 3.317000;, + 2.704728;-4.899481; 3.317000;, + 2.704729;-4.899481; 6.125084;, + 0.595866;-4.899481; 6.125085;, + 0.595866;-2.928798; 3.317000;, + 0.595866;-2.928798; 6.125085;, + 2.704729;-2.928798; 6.125084;, + 2.704729;-2.928798; 3.316999;, + -2.644433;-5.423595; 5.058936;, + -2.644430; 5.376405; 5.058936;, + 2.755570; 5.376402; 5.058936;, + 2.755566;-5.423599; 5.058936;, + 2.755567;-5.423597;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755567;-5.423597;10.458936;, + -2.644433;-5.423595; 5.058936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644430; 5.376405; 5.058936;, + -2.644430; 5.376405; 5.058936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + 2.755570; 5.376402; 5.058936;, + 2.755570; 5.376402; 5.058936;, + 2.755571; 5.376401;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755566;-5.423599; 5.058936;, + -0.346656;-5.423596; 9.828822;, + -0.346656;-5.423596; 7.673504;, + -0.346656;-6.180264; 7.673504;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-6.180264; 9.828822;, + -0.346656;-6.180264; 7.673504;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-6.180264; 9.828822;, + -2.644435;-5.423593;10.458936;, + -2.644433;-5.423595; 5.058936;, + 2.755566;-5.423599; 5.058936;, + 2.755567;-5.423597;10.458936;, + -0.346656;-5.423596; 7.673504;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-6.180264; 7.673504;, + -0.346656;-6.180264; 7.673504;, + 0.457788;-5.423596; 7.673504;, + 0.457788;-5.423596; 9.828822;, + 0.457788;-6.180264; 9.828822;, + 0.457788;-6.180264; 7.673504;, + 0.457788;-5.423596; 9.828822;, + -0.346656;-5.423596; 9.828822;, + -0.346656;-6.180264; 9.828822;, + 0.457788;-6.180264; 9.828822;, + 1.668879; 7.180430; 8.557201;, + 1.668880; 7.180430;11.783818;, + 1.668878; 6.793243;11.783818;, + 1.668877; 6.793243; 8.557201;, + -1.557739; 6.793245; 8.557201;, + -1.557738; 7.180430; 8.557201;, + 1.668879; 7.180430; 8.557201;, + 1.668877; 6.793243; 8.557201;, + -1.557740; 6.793246;11.783818;, + 1.668878; 6.793243;11.783818;, + 1.668880; 7.180430;11.783818;, + -1.557737; 7.180432;11.783818;, + -1.557739; 6.793245; 8.557201;, + -1.557740; 6.793246;11.783818;, + -1.557737; 7.180432;11.783818;, + -1.557738; 7.180430; 8.557201;, + 1.668879; 7.180430; 8.557201;, + -1.557738; 7.180430; 8.557201;, + -1.557737; 7.180432;11.783818;, + 1.668880; 7.180430;11.783818;, + 1.133778; 7.466741; 8.575418;, + 1.133778; 7.466741;10.170522;, + 1.133777; 7.146296;10.170522;, + 1.133777; 7.146296; 8.575418;, + -1.022638; 7.146297; 8.575418;, + -1.022637; 7.466741; 8.575418;, + 1.133778; 7.466741; 8.575418;, + 1.133777; 7.146296; 8.575418;, + -1.022639; 7.146297;10.170522;, + 1.133777; 7.146296;10.170522;, + 1.133778; 7.466741;10.170522;, + -1.022637; 7.466742;10.170522;, + -1.022638; 7.146297; 8.575418;, + -1.022639; 7.146297;10.170522;, + -1.022637; 7.466742;10.170522;, + -1.022637; 7.466741; 8.575418;, + 1.133778; 7.466741; 8.575418;, + -1.022637; 7.466741; 8.575418;, + -1.022637; 7.466742;10.170522;, + 1.133778; 7.466741;10.170522;, + -2.644435;-5.423593;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644428; 5.376408;10.458936;, + 2.755571; 5.376401;10.458936;, + -2.644435;-5.423593;10.458936;, + 2.755567;-5.423597;10.458936;, + 2.755567;-5.423597;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644435;-5.423593;10.458936;, + -2.644428; 5.376408;10.458936;; + 87; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;, + 4;147,146,145,144;, + 4;151,150,149,148;, + 4;155,154,153,152;, + 4;159,158,157,156;, + 4;163,162,161,160;, + 4;167,166,165,164;, + 4;171,170,169,168;, + 4;175,174,173,172;, + 4;179,178,177,176;, + 4;183,182,181,180;, + 4;187,186,185,184;, + 4;191,190,189,188;, + 4;195,194,193,192;, + 4;199,198,197,196;, + 4;203,202,201,200;, + 4;207,206,205,204;, + 4;211,210,209,208;, + 4;215,214,213,212;, + 4;219,218,217,216;, + 4;223,222,221,220;, + 4;227,226,225,224;, + 4;231,230,229,228;, + 4;235,234,233,232;, + 4;239,238,237,236;, + 4;243,242,241,240;, + 4;247,246,245,244;, + 4;251,250,249,248;, + 4;255,254,253,252;, + 4;259,258,257,256;, + 4;263,262,261,260;, + 4;267,266,265,264;, + 4;271,270,269,268;, + 4;275,274,273,272;, + 4;279,278,277,276;, + 4;283,282,281,280;, + 4;287,286,285,284;, + 4;291,290,289,288;, + 4;295,294,293,292;, + 4;299,298,297,296;, + 4;303,302,301,300;, + 4;307,306,305,304;, + 4;311,310,309,308;, + 4;315,314,313,312;, + 4;319,318,317,316;, + 4;323,322,321,320;, + 4;327,326,325,324;, + 4;331,330,329,328;, + 4;335,334,333,332;, + 4;339,338,337,336;, + 4;343,342,341,340;, + 4;347,346,345,344;; + MeshTextureCoords { // sheep UV coordinates + 348; + 0.125000; 0.640030;, + 0.125000; 0.320030;, + 0.000000; 0.319970;, + 0.000000; 0.639970;, + 0.375000; 0.320000;, + 0.375000; 0.640000;, + 0.500000; 0.640000;, + 0.500000; 0.320000;, + 0.250000; 0.000000;, + 0.250000; 0.320000;, + 0.375000; 0.320000;, + 0.375000; 0.000000;, + 0.124996; 0.320055;, + 0.250060; 0.319945;, + 0.249940;-0.000024;, + 0.125004; 0.000024;, + 0.375028; 0.640000;, + 0.374972; 0.320000;, + 0.249972; 0.320000;, + 0.250028; 0.640000;, + 0.125000; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.320000;, + 0.125000; 0.320000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.187500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.125000; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.759130;-0.193221;, + 0.759130;-0.304332;, + 0.659130;-0.304332;, + 0.659130;-0.193221;, + 0.062500; 0.640000;, + -0.000000; 0.640000;, + 0.000000; 0.760000;, + 0.062500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.062500; 0.639979;, + 0.000000; 0.640021;, + 0.000000; 1.000021;, + 0.062500; 0.999979;, + 0.250000; 0.639931;, + 0.187500; 0.640069;, + 0.187500; 1.000069;, + 0.250000; 0.999931;, + 0.312500; 0.840000;, + 0.250000; 0.840000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.187500; 0.640033;, + 0.125000; 0.640000;, + 0.125000; 0.999983;, + 0.187500; 1.000017;, + 0.125000; 0.760000;, + 0.062500; 0.760000;, + 0.062500; 0.640000;, + 0.125000; 0.640000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.760000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 0.760000;, + 0.890126;-0.161009;, + 0.790126;-0.161009;, + 0.790126;-0.272120;, + 0.890126;-0.272120;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.000000; 0.760000;, + 0.000000; 0.640000;, + 0.312500; 0.719920;, + 0.312500; 0.759920;, + 0.250000; 0.760080;, + 0.250000; 0.720080;, + 0.125000; 0.640000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.640000;, + 0.312500; 0.840000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.840000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.640000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.312500; 0.840000;, + 0.312500; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.840000;, + 0.250000; 0.640000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.640000;, + 0.125000; 0.640000;, + 0.124948; 1.000000;, + 0.062474; 1.000000;, + 0.062526; 0.640000;, + 0.312500; 0.720000;, + 0.312500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.720000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.000000; 0.760000;, + 0.000000; 0.640000;, + 1.015396;-0.183378;, + 0.915396;-0.183378;, + 0.915396;-0.294490;, + 1.015396;-0.294490;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.250000; 0.640000;, + 0.250000; 0.760000;, + 0.125000; 0.759933;, + 0.062500; 0.760067;, + 0.062500; 0.640000;, + 0.125000; 0.639867;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.312500; 0.719961;, + 0.250000; 0.720039;, + 0.250000; 0.760000;, + 0.312500; 0.759921;, + 0.312500; 0.840000;, + 0.250000; 0.840000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.062518; 0.640000;, + 0.000018; 0.640000;, + -0.000018; 1.000000;, + 0.062482; 1.000000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.312500; 0.720000;, + 0.250000; 0.720000;, + 0.250000; 0.760000;, + 0.312500; 0.760000;, + 0.062500; 0.640000;, + 0.000000; 0.640000;, + 0.000000; 0.760000;, + 0.062500; 0.760000;, + 1.167509;-0.196800;, + 1.167509;-0.307911;, + 1.067509;-0.307911;, + 1.067509;-0.196800;, + 0.125000; 0.760000;, + 0.187500; 0.760000;, + 0.187500; 0.640000;, + 0.125000; 0.640000;, + 0.187500; 0.760000;, + 0.250000; 0.760000;, + 0.250000; 0.640000;, + 0.187500; 0.640000;, + 0.125000; 0.760000;, + 0.125000; 0.640000;, + 0.062500; 0.640000;, + 0.062500; 0.760000;, + 0.625000; 0.000000;, + 0.625000; 0.640000;, + 0.750000; 0.640000;, + 0.750000; 0.000000;, + 0.022044; 1.042020;, + 0.022044; 1.514242;, + 0.022044; 1.514242;, + 0.022044; 1.042020;, + 1.000000; 0.000000;, + 0.875000; 0.000000;, + 0.875000; 0.640000;, + 1.000000; 0.640000;, + 0.625000; 0.640000;, + 0.500000; 0.640000;, + 0.500000; 0.960000;, + 0.625000; 0.960000;, + 0.750000; 0.640000;, + 0.875000; 0.640000;, + 0.875000; 0.000000;, + 0.750000; 0.000000;, + 0.750000; 0.083333;, + 0.750000; 0.194445;, + 0.775000; 0.194445;, + 0.775000; 0.083333;, + 0.775000; 0.083333;, + 0.775000; 0.194445;, + 0.825000; 0.194445;, + 0.825000; 0.083333;, + 0.750000; 0.640000;, + 0.625000; 0.640000;, + 0.625000; 0.960000;, + 0.750000; 0.960000;, + 0.775000; 0.222222;, + 0.825000; 0.222222;, + 0.825000; 0.194445;, + 0.775000; 0.194445;, + 0.850000; 0.194445;, + 0.850000; 0.083333;, + 0.825000; 0.083333;, + 0.825000; 0.194445;, + 0.825000; 0.055556;, + 0.775000; 0.055556;, + 0.775000; 0.083333;, + 0.825000; 0.083333;, + 0.140625; 0.599923;, + 0.140625; 0.359923;, + 0.125000; 0.360077;, + 0.125000; 0.600077;, + 0.250000; 0.640000;, + 0.250000; 0.600000;, + 0.125000; 0.600000;, + 0.125000; 0.640000;, + 0.250005; 0.320000;, + 0.125005; 0.320000;, + 0.124995; 0.360000;, + 0.249995; 0.360000;, + 0.250000; 0.640000;, + 0.250000; 0.320000;, + 0.234375; 0.320000;, + 0.234375; 0.640000;, + 0.140625; 0.600000;, + 0.234375; 0.600000;, + 0.234375; 0.360000;, + 0.140625; 0.360000;, + 0.156250; 0.520000;, + 0.156250; 0.600000;, + 0.171875; 0.600000;, + 0.171875; 0.520000;, + 0.156250; 0.480000;, + 0.156250; 0.520000;, + 0.218750; 0.520000;, + 0.218750; 0.480000;, + 0.156250; 0.520000;, + 0.218750; 0.520000;, + 0.218750; 0.480000;, + 0.156250; 0.480000;, + 0.203125; 0.520000;, + 0.203125; 0.600000;, + 0.218750; 0.600000;, + 0.218750; 0.520000;, + 0.218750; 0.520000;, + 0.156250; 0.520000;, + 0.156250; 0.600000;, + 0.218750; 0.600000;, + 0.625000; 0.000000;, + 0.500000; 0.000000;, + 0.500000; 0.640000;, + 0.625000; 0.640000;, + 0.040651; 1.362711;, + 0.040651; 1.140488;, + 0.040651; 1.140488;, + 0.040651; 1.362711;, + 1.000000; 0.027778;, + 1.000000; 0.250000;, + 1.000000; 0.250000;, + 1.000000; 0.027778;, + 0.004432; 1.505653;, + 0.004432; 1.033430;, + 0.004432; 1.033430;, + 0.004432; 1.505653;; + } // End of sheep UV coordinates + XSkinMeshHeader { + 5; + 15; + 6; + } + SkinWeights { + "Armature_Bone_003"; + 243; + 5, + 8, + 16, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 251, + 252, + 255, + 256, + 259, + 260, + 266, + 267, + 277, + 278, + 279, + 333, + 341, + 342; + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 0.999417, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000002, + 0.000000, + 0.000000, + 0.000000, + 0.000015, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000002, + 0.000015, + 0.000000, + 0.000002, + 0.000000, + 0.000000, + 0.000015, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000192, + 0.000000, + 0.000000, + 0.000008, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000008, + 0.000020, + 0.000020, + 0.000008, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000008, + 0.000000, + 0.000000, + 0.008993, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002810, + 0.000000, + 0.000000, + 0.000024, + 0.000000, + 0.002810, + 0.000024, + 0.000020, + 0.000020, + 0.000024, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002810, + 0.000000, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000012, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.469550, 5.848685, 4.064454, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_002"; + 59; + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 175, + 178, + 186; + 1.000000, + 1.000000, + 0.999998, + 1.000000, + 1.000000, + 1.000000, + 0.999985, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999998, + 0.999985, + 1.000000, + 0.999998, + 1.000000, + 1.000000, + 0.999985, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999751, + 1.000000, + 1.000000, + 0.999751, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999751, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.429772, 5.848685,-3.642603, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_001"; + 56; + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 0.999992, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999992, + 0.999980, + 0.999980, + 0.999992, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 0.999992, + 1.000000, + 1.000000, + 0.991007, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.997190, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 0.997190, + 0.999976, + 0.999980, + 0.999980, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.997190; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -1.429771, 5.848686, 4.064455, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_RR_leg"; + 65; + 86, + 94, + 99, + 114, + 117, + 133, + 175, + 178, + 186, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247; + 0.000000, + 0.000000, + 0.000000, + 0.000057, + 0.000057, + 0.000057, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999988, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999988, + 1.000000, + 1.000000, + 0.999988, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999976, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.000000,-1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 1.469550, 5.848685,-3.642604, 1.000000;; + } // End of Armature_RR_leg skin weights + SkinWeights { + "Armature_Head"; + 78; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 253, + 254, + 258, + 261, + 262, + 265, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 334, + 335, + 336, + 337, + 338, + 339, + 344, + 347; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000003, + 0.000003, + 0.000000, + 0.000000, + 0.000003, + 0.000003, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000003, + 0.000000, + 0.000003, + 0.000000, + 0.000000, + 0.000003, + 0.000000, + 0.000000; + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.030900,-3.778762,-10.040427, 1.000000;; + } // End of Armature_Head skin weights + SkinWeights { + "Armature_Root"; + 78; + 3, + 6, + 11, + 30, + 31, + 34, + 37, + 38, + 41, + 86, + 94, + 99, + 175, + 178, + 186, + 229, + 234, + 242, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347; + 0.000000, + 0.000000, + 0.000000, + 0.000583, + 0.000000, + 0.000000, + 0.000000, + 0.000583, + 0.000583, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000024, + 0.000024, + 0.000024, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 0.999997, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.030899,-5.987902, 0.009275, 1.000000;; + } // End of Armature_Root skin weights + } // End of sheep mesh + } // End of sheep + } // End of Armature +} // End of Root +AnimationSet ArmatureAction { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 189; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3; 0.020581, 0.043608, 0.162447;;, + 1;3; 0.020581, 0.043608, 0.162447;;, + 2;3; 0.020581, 0.043608, 0.162447;;, + 3;3; 0.020581, 0.043608, 0.162447;;, + 4;3; 0.020581, 0.043608, 0.162447;;, + 5;3; 0.020581, 0.043608, 0.162447;;, + 6;3; 0.020581, 0.043608, 0.162447;;, + 7;3; 0.020581, 0.043608, 0.162447;;, + 8;3; 0.020581, 0.043608, 0.162447;;, + 9;3; 0.020581, 0.043608, 0.162447;;, + 10;3; 0.020581, 0.043608, 0.162447;;, + 11;3; 0.020581, 0.043608, 0.162447;;, + 12;3; 0.020581, 0.043608, 0.162447;;, + 13;3; 0.020581, 0.043608, 0.162447;;, + 14;3; 0.020581, 0.043608, 0.162447;;, + 15;3; 0.020581, 0.043608, 0.162447;;, + 16;3; 0.020581, 0.043608, 0.162447;;, + 17;3; 0.020581, 0.043608, 0.162447;;, + 18;3; 0.020581, 0.043608, 0.162447;;, + 19;3; 0.020581, 0.043608, 0.162447;;, + 20;3; 0.020581, 0.043608, 0.162447;;, + 21;3; 0.020581, 0.043608, 0.162447;;, + 22;3; 0.020581, 0.043608, 0.162447;;, + 23;3; 0.020581, 0.043608, 0.162447;;, + 24;3; 0.020581, 0.043608, 0.162447;;, + 25;3; 0.020581, 0.043608, 0.162447;;, + 26;3; 0.020581, 0.043608, 0.162447;;, + 27;3; 0.020581, 0.043608, 0.162447;;, + 28;3; 0.020581, 0.043608, 0.162447;;, + 29;3; 0.020581, 0.043608, 0.162447;;, + 30;3; 0.020581, 0.043608, 0.162447;;, + 31;3; 0.020581, 0.043608, 0.162447;;, + 32;3; 0.020581, 0.043608, 0.162447;;, + 33;3; 0.020581, 0.043608, 0.162447;;, + 34;3; 0.020581, 0.043608, 0.162447;;, + 35;3; 0.020581, 0.043608, 0.162447;;, + 36;3; 0.020581, 0.043608, 0.162447;;, + 37;3; 0.020581, 0.043608, 0.162447;;, + 38;3; 0.020581, 0.043608, 0.162447;;, + 39;3; 0.020581, 0.043608, 0.162447;;, + 40;3; 0.020581, 0.043608, 0.162447;;, + 41;3; 0.020581, 0.043608, 0.162447;;, + 42;3; 0.020581, 0.043608, 0.162447;;, + 43;3; 0.020581, 0.043608, 0.162447;;, + 44;3; 0.020581, 0.043608, 0.162447;;, + 45;3; 0.020581, 0.043608, 0.162447;;, + 46;3; 0.020581, 0.043608, 0.162447;;, + 47;3; 0.020581, 0.043608, 0.162447;;, + 48;3; 0.020581, 0.043608, 0.162447;;, + 49;3; 0.020581, 0.043608, 0.162447;;, + 50;3; 0.020581, 0.043608, 0.162447;;, + 51;3; 0.020581, 0.043608, 0.162447;;, + 52;3; 0.020581, 0.043608, 0.162447;;, + 53;3; 0.020581, 0.043608, 0.162447;;, + 54;3; 0.020581, 0.043608, 0.162447;;, + 55;3; 0.020581, 0.043608, 0.162447;;, + 56;3; 0.020581, 0.043608, 0.162447;;, + 57;3; 0.020581, 0.043608, 0.162447;;, + 58;3; 0.020581, 0.043608, 0.162447;;, + 59;3; 0.020581, 0.043608, 0.162447;;, + 60;3; 0.020581, 0.043608, 0.162447;;, + 61;3; 0.020581, 0.043608, 0.162447;;, + 62;3; 0.020581, 0.043608, 0.162447;;, + 63;3; 0.020581, 0.043608, 0.162447;;, + 64;3; 0.020581, 0.043608, 0.162447;;, + 65;3; 0.020581, 0.043608, 0.162447;;, + 66;3; 0.020581, 0.043608, 0.162447;;, + 67;3; 0.020581, 0.043608, 0.162447;;, + 68;3; 0.020581, 0.043608, 0.162447;;, + 69;3; 0.020581, 0.043608, 0.162447;;, + 70;3; 0.020581, 0.043608, 0.162447;;, + 71;3; 0.020581, 0.043608, 0.162447;;, + 72;3; 0.020581, 0.043608, 0.162447;;, + 73;3; 0.020581, 0.043608, 0.162447;;, + 74;3; 0.020581, 0.043608, 0.162447;;, + 75;3; 0.020581, 0.043608, 0.162447;;, + 76;3; 0.020581, 0.043608, 0.162447;;, + 77;3; 0.020581, 0.043608, 0.162447;;, + 78;3; 0.020581, 0.043608, 0.162447;;, + 79;3; 0.020581, 0.043608, 0.162447;;, + 80;3; 0.020581, 0.043608, 0.162447;;, + 81;3; 0.020581, 0.043608, 0.162447;;, + 82;3; 0.020581, 0.043608, 0.162447;;, + 83;3; 0.020581, 0.043608, 0.162447;;, + 84;3; 0.020581, 0.043608, 0.162447;;, + 85;3; 0.020581, 0.043608, 0.162447;;, + 86;3; 0.020581, 0.043608, 0.162447;;, + 87;3; 0.020581, 0.043608, 0.162447;;, + 88;3; 0.020581, 0.043608, 0.162447;;, + 89;3; 0.020581, 0.043608, 0.162447;;, + 90;3; 0.020581, 0.043608, 0.162447;;, + 91;3; 0.020581, 0.043608, 0.162447;;, + 92;3; 0.020581, 0.043608, 0.162447;;, + 93;3; 0.020581, 0.043608, 0.162447;;, + 94;3; 0.020581, 0.043608, 0.162447;;, + 95;3; 0.020581, 0.043608, 0.162447;;, + 96;3; 0.020581, 0.043608, 0.162447;;, + 97;3; 0.020581, 0.043608, 0.162447;;, + 98;3; 0.020581, 0.043608, 0.162447;;, + 99;3; 0.020581, 0.043608, 0.162447;;, + 100;3; 0.020581, 0.043608, 0.162447;;, + 101;3; 0.020581, 0.043608, 0.162447;;, + 102;3; 0.020581, 0.043608, 0.162447;;, + 103;3; 0.020581, 0.043608, 0.162447;;, + 104;3; 0.020581, 0.043608, 0.162447;;, + 105;3; 0.020581, 0.043608, 0.162447;;, + 106;3; 0.020581, 0.043608, 0.162447;;, + 107;3; 0.020581, 0.043608, 0.162447;;, + 108;3; 0.020581, 0.043608, 0.162447;;, + 109;3; 0.020581, 0.043608, 0.162447;;, + 110;3; 0.020581, 0.043608, 0.162447;;, + 111;3; 0.020581, 0.043608, 0.162447;;, + 112;3; 0.020581, 0.043608, 0.162447;;, + 113;3; 0.020581, 0.043608, 0.162447;;, + 114;3; 0.020581, 0.043608, 0.162447;;, + 115;3; 0.020581, 0.043608, 0.162447;;, + 116;3; 0.020581, 0.043608, 0.162447;;, + 117;3; 0.020581, 0.043608, 0.162447;;, + 118;3; 0.020581, 0.043608, 0.162447;;, + 119;3; 0.020581, 0.043608, 0.162447;;, + 120;3; 0.020581, 0.043608, 0.162447;;, + 121;3; 0.020581, 0.043608, 0.162447;;, + 122;3; 0.020581, 0.043608, 0.162447;;, + 123;3; 0.020581, 0.043608, 0.162447;;, + 124;3; 0.020581, 0.043608, 0.162447;;, + 125;3; 0.020581, 0.043608, 0.162447;;, + 126;3; 0.020581, 0.043608, 0.162447;;, + 127;3; 0.020581, 0.043608, 0.162447;;, + 128;3; 0.020581, 0.043608, 0.162447;;, + 129;3; 0.020581, 0.043608, 0.162447;;, + 130;3; 0.020581, 0.043608, 0.162447;;, + 131;3; 0.020581, 0.043608, 0.162447;;, + 132;3; 0.020581, 0.043608, 0.162447;;, + 133;3; 0.020581, 0.043608, 0.162447;;, + 134;3; 0.020581, 0.043608, 0.162447;;, + 135;3; 0.020581, 0.043608, 0.162447;;, + 136;3; 0.020581, 0.043608, 0.162447;;, + 137;3; 0.020581, 0.043608, 0.162447;;, + 138;3; 0.020581, 0.043608, 0.162447;;, + 139;3; 0.020581, 0.043608, 0.162447;;, + 140;3; 0.020581, 0.043608, 0.162447;;, + 141;3; 0.020581, 0.043608, 0.162447;;, + 142;3; 0.020581, 0.043608, 0.162447;;, + 143;3; 0.020581, 0.043608, 0.162447;;, + 144;3; 0.020581, 0.043608, 0.162447;;, + 145;3; 0.020581, 0.043608, 0.162447;;, + 146;3; 0.020581, 0.043608, 0.162447;;, + 147;3; 0.020581, 0.043608, 0.162447;;, + 148;3; 0.020581, 0.043608, 0.162447;;, + 149;3; 0.020581, 0.043608, 0.162447;;, + 150;3; 0.020581, 0.043608, 0.162447;;, + 151;3; 0.020581, 0.043608, 0.162447;;, + 152;3; 0.020581, 0.043608, 0.162447;;, + 153;3; 0.020581, 0.043608, 0.162447;;, + 154;3; 0.020581, 0.043608, 0.162447;;, + 155;3; 0.020581, 0.043608, 0.162447;;, + 156;3; 0.020581, 0.043608, 0.162447;;, + 157;3; 0.020581, 0.043608, 0.162447;;, + 158;3; 0.020581, 0.043608, 0.162447;;, + 159;3; 0.020581, 0.043608, 0.162447;;, + 160;3; 0.020581, 0.043608, 0.162447;;, + 161;3; 0.020581, 0.043608, 0.162447;;, + 162;3; 0.020581, 0.043608, 0.162447;;, + 163;3; 0.020581, 0.043608, 0.162447;;, + 164;3; 0.020581, 0.043608, 0.162447;;, + 165;3; 0.020581, 0.043608, 0.162447;;, + 166;3; 0.020581, 0.043608, 0.162447;;, + 167;3; 0.020581, 0.043608, 0.162447;;, + 168;3; 0.020581, 0.043608, 0.162447;;, + 169;3; 0.020581, 0.043608, 0.162447;;, + 170;3; 0.020581, 0.043608, 0.162447;;, + 171;3; 0.020581, 0.043608, 0.162447;;, + 172;3; 0.020581, 0.043608, 0.162447;;, + 173;3; 0.020581, 0.043608, 0.162447;;, + 174;3; 0.020581, 0.043608, 0.162447;;, + 175;3; 0.020581, 0.043608, 0.162447;;, + 176;3; 0.020581, 0.043608, 0.162447;;, + 177;3; 0.020581, 0.043608, 0.162447;;, + 178;3; 0.020581, 0.043608, 0.162447;;, + 179;3; 0.020581, 0.043608, 0.162447;;, + 180;3; 0.020581, 0.043608, 0.162447;;, + 181;3; 0.020581, 0.043608, 0.162447;;, + 182;3; 0.020581, 0.043608, 0.162447;;, + 183;3; 0.020581, 0.043608, 0.162447;;, + 184;3; 0.020581, 0.043608, 0.162447;;, + 185;3; 0.020581, 0.043608, 0.162447;;, + 186;3; 0.020581, 0.043608, 0.162447;;, + 187;3; 0.020581, 0.043608, 0.162447;;, + 188;3; 0.020581, 0.043608, 0.162447;;; + } + } + Animation { + {Armature_Root} + AnimationKey { // Rotation + 0; + 189; + 0;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 2;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 3;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 4;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 5;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 6;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 7;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 8;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 9;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 10;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 11;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 12;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 13;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 14;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 15;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 16;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 17;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 18;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 19;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 20;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 21;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 22;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 23;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 24;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 25;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 26;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 27;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 28;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 29;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 30;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 31;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 32;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 33;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 34;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 35;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 36;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 37;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 38;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 39;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 40;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 41;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 42;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 43;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 44;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 45;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 46;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 47;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 48;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 49;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 50;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 51;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 52;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 53;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 54;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 55;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 56;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 57;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 58;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 59;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 60;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 61;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 62;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 63;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 64;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 65;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 66;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 67;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 68;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 69;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 70;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 71;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 72;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 73;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 74;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 75;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 76;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 77;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 78;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 79;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 80;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 81;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 82;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 83;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 84;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 85;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 86;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 87;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 88;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 89;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 90;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 91;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 92;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 93;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 94;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 95;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 96;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 97;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 98;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 99;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 100;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 101;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 102;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 103;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 104;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 105;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 106;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 107;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 108;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 109;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 110;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 111;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 112;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 113;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 114;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 115;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 116;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 117;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 118;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 119;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 120;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 121;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 122;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 123;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 124;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 125;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 126;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 127;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 128;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 129;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 130;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 131;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 132;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 133;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 134;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 135;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 136;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 137;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 138;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 139;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 140;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 141;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 142;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 143;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 144;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 145;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 146;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 147;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 148;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 149;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 150;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 151;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 152;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 153;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 154;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 155;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 156;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 157;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 158;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 159;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 160;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 161;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 162;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 163;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 164;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3; 0.030899,-0.009276, 5.987902;;, + 1;3; 0.030899,-0.009276, 5.987902;;, + 2;3; 0.030899,-0.009276, 5.987902;;, + 3;3; 0.030899,-0.009276, 5.987902;;, + 4;3; 0.030899,-0.009276, 5.987902;;, + 5;3; 0.030899,-0.009276, 5.987902;;, + 6;3; 0.030899,-0.009276, 5.987902;;, + 7;3; 0.030899,-0.009276, 5.987902;;, + 8;3; 0.030899,-0.009276, 5.987902;;, + 9;3; 0.030899,-0.009276, 5.987902;;, + 10;3; 0.030899,-0.009276, 5.987902;;, + 11;3; 0.030899,-0.009276, 5.987902;;, + 12;3; 0.030899,-0.009276, 5.987902;;, + 13;3; 0.030899,-0.009276, 5.987902;;, + 14;3; 0.030899,-0.009276, 5.987902;;, + 15;3; 0.030899,-0.009276, 5.987902;;, + 16;3; 0.030899,-0.009276, 5.987902;;, + 17;3; 0.030899,-0.009276, 5.987902;;, + 18;3; 0.030899,-0.009276, 5.987902;;, + 19;3; 0.030899,-0.009276, 5.987902;;, + 20;3; 0.030899,-0.009276, 5.987902;;, + 21;3; 0.030899,-0.009276, 5.987902;;, + 22;3; 0.030899,-0.009276, 5.987902;;, + 23;3; 0.030899,-0.009276, 5.987902;;, + 24;3; 0.030899,-0.009276, 5.987902;;, + 25;3; 0.030899,-0.009276, 5.987902;;, + 26;3; 0.030899,-0.009276, 5.987902;;, + 27;3; 0.030899,-0.009276, 5.987902;;, + 28;3; 0.030899,-0.009276, 5.987902;;, + 29;3; 0.030899,-0.009276, 5.987902;;, + 30;3; 0.030899,-0.009276, 5.987902;;, + 31;3; 0.030899,-0.009276, 5.987902;;, + 32;3; 0.030899,-0.009276, 5.987902;;, + 33;3; 0.030899,-0.009276, 5.987902;;, + 34;3; 0.030899,-0.009276, 5.987902;;, + 35;3; 0.030899,-0.009276, 5.987902;;, + 36;3; 0.030899,-0.009276, 5.987902;;, + 37;3; 0.030899,-0.009276, 5.987902;;, + 38;3; 0.030899,-0.009276, 5.987902;;, + 39;3; 0.030899,-0.009276, 5.987902;;, + 40;3; 0.030899,-0.009276, 5.987902;;, + 41;3; 0.030899,-0.009276, 5.987902;;, + 42;3; 0.030899,-0.009276, 5.987902;;, + 43;3; 0.030899,-0.009276, 5.987902;;, + 44;3; 0.030899,-0.009276, 5.987902;;, + 45;3; 0.030899,-0.009276, 5.987902;;, + 46;3; 0.030899,-0.009276, 5.987902;;, + 47;3; 0.030899,-0.009276, 5.987902;;, + 48;3; 0.030899,-0.009276, 5.987902;;, + 49;3; 0.030899,-0.009276, 5.987902;;, + 50;3; 0.030899,-0.009276, 5.987902;;, + 51;3; 0.030899,-0.009276, 5.987902;;, + 52;3; 0.030899,-0.009276, 5.987902;;, + 53;3; 0.030899,-0.009276, 5.987902;;, + 54;3; 0.030899,-0.009276, 5.987902;;, + 55;3; 0.030899,-0.009276, 5.987902;;, + 56;3; 0.030899,-0.009276, 5.987902;;, + 57;3; 0.030899,-0.009276, 5.987902;;, + 58;3; 0.030899,-0.009276, 5.987902;;, + 59;3; 0.030899,-0.009276, 5.987902;;, + 60;3; 0.030899,-0.009276, 5.987902;;, + 61;3; 0.030899,-0.009276, 5.987902;;, + 62;3; 0.030899,-0.009276, 5.987902;;, + 63;3; 0.030899,-0.009276, 5.987902;;, + 64;3; 0.030899,-0.009276, 5.987902;;, + 65;3; 0.030899,-0.009276, 5.987902;;, + 66;3; 0.030899,-0.009276, 5.987902;;, + 67;3; 0.030899,-0.009276, 5.987902;;, + 68;3; 0.030899,-0.009276, 5.987902;;, + 69;3; 0.030899,-0.009276, 5.987902;;, + 70;3; 0.030899,-0.009276, 5.987902;;, + 71;3; 0.030899,-0.009276, 5.987902;;, + 72;3; 0.030899,-0.009276, 5.987902;;, + 73;3; 0.030899,-0.009276, 5.987902;;, + 74;3; 0.030899,-0.009276, 5.987902;;, + 75;3; 0.030899,-0.009276, 5.987902;;, + 76;3; 0.030899,-0.009276, 5.987902;;, + 77;3; 0.030899,-0.009276, 5.987902;;, + 78;3; 0.030899,-0.009276, 5.987902;;, + 79;3; 0.030899,-0.009276, 5.987902;;, + 80;3; 0.030899,-0.009276, 5.987902;;, + 81;3; 0.030899,-0.009276, 5.987902;;, + 82;3; 0.030899,-0.009276, 5.987902;;, + 83;3; 0.030899,-0.009276, 5.987902;;, + 84;3; 0.030899,-0.009276, 5.987902;;, + 85;3; 0.030899,-0.009276, 5.987902;;, + 86;3; 0.030899,-0.009276, 5.987902;;, + 87;3; 0.030899,-0.009276, 5.987902;;, + 88;3; 0.030899,-0.009276, 5.987902;;, + 89;3; 0.030899,-0.009276, 5.987902;;, + 90;3; 0.030899,-0.009276, 5.987902;;, + 91;3; 0.030899,-0.009276, 5.987902;;, + 92;3; 0.030899,-0.009276, 5.987902;;, + 93;3; 0.030899,-0.009276, 5.987902;;, + 94;3; 0.030899,-0.009276, 5.987902;;, + 95;3; 0.030899,-0.009276, 5.987902;;, + 96;3; 0.030899,-0.009276, 5.987902;;, + 97;3; 0.030899,-0.009276, 5.987902;;, + 98;3; 0.030899,-0.009276, 5.987902;;, + 99;3; 0.030899,-0.009276, 5.987902;;, + 100;3; 0.030899,-0.009276, 5.987902;;, + 101;3; 0.030899,-0.009276, 5.987902;;, + 102;3; 0.030899,-0.009276, 5.987902;;, + 103;3; 0.030899,-0.009276, 5.987902;;, + 104;3; 0.030899,-0.009276, 5.987902;;, + 105;3; 0.030899,-0.009276, 5.987902;;, + 106;3; 0.030899,-0.009276, 5.987902;;, + 107;3; 0.030899,-0.009276, 5.987902;;, + 108;3; 0.030899,-0.009276, 5.987902;;, + 109;3; 0.030899,-0.009276, 5.987902;;, + 110;3; 0.030899,-0.009276, 5.987902;;, + 111;3; 0.030899,-0.009276, 5.987902;;, + 112;3; 0.030899,-0.009276, 5.987902;;, + 113;3; 0.030899,-0.009276, 5.987902;;, + 114;3; 0.030899,-0.009276, 5.987902;;, + 115;3; 0.030899,-0.009276, 5.987902;;, + 116;3; 0.030899,-0.009276, 5.987902;;, + 117;3; 0.030899,-0.009276, 5.987902;;, + 118;3; 0.030899,-0.009276, 5.987902;;, + 119;3; 0.030899,-0.009276, 5.987902;;, + 120;3; 0.030899,-0.009276, 5.987902;;, + 121;3; 0.030899,-0.009276, 5.987902;;, + 122;3; 0.030899,-0.009276, 5.987902;;, + 123;3; 0.030899,-0.009276, 5.987902;;, + 124;3; 0.030899,-0.009276, 5.987902;;, + 125;3; 0.030899,-0.009276, 5.987902;;, + 126;3; 0.030899,-0.009276, 5.987902;;, + 127;3; 0.030899,-0.009276, 5.987902;;, + 128;3; 0.030899,-0.009276, 5.987902;;, + 129;3; 0.030899,-0.009276, 5.987902;;, + 130;3; 0.030899,-0.009276, 5.987902;;, + 131;3; 0.030899,-0.009276, 5.987902;;, + 132;3; 0.030899,-0.009276, 5.987902;;, + 133;3; 0.030899,-0.009276, 5.987902;;, + 134;3; 0.030899,-0.009276, 5.987902;;, + 135;3; 0.030899,-0.009276, 5.987902;;, + 136;3; 0.030899,-0.009276, 5.987902;;, + 137;3; 0.030899,-0.009276, 5.987902;;, + 138;3; 0.030899,-0.009276, 5.987902;;, + 139;3; 0.030899,-0.009276, 5.987902;;, + 140;3; 0.030899,-0.009276, 5.987902;;, + 141;3; 0.030899,-0.009276, 5.987902;;, + 142;3; 0.030899,-0.009276, 5.987902;;, + 143;3; 0.030899,-0.009276, 5.987902;;, + 144;3; 0.030899,-0.009276, 5.987902;;, + 145;3; 0.030899,-0.009276, 5.987902;;, + 146;3; 0.030899,-0.009276, 5.987902;;, + 147;3; 0.030899,-0.009276, 5.987902;;, + 148;3; 0.030899,-0.009276, 5.987902;;, + 149;3; 0.030899,-0.009276, 5.987902;;, + 150;3; 0.030899,-0.009276, 5.987902;;, + 151;3; 0.030899,-0.009276, 5.987902;;, + 152;3; 0.030899,-0.009276, 5.987902;;, + 153;3; 0.030899,-0.009276, 5.987902;;, + 154;3; 0.030899,-0.009276, 5.987902;;, + 155;3; 0.030899,-0.009276, 5.987902;;, + 156;3; 0.030899,-0.009276, 5.987902;;, + 157;3; 0.030899,-0.009276, 5.987902;;, + 158;3; 0.030899,-0.009276, 5.987902;;, + 159;3; 0.030899,-0.009276, 5.987902;;, + 160;3; 0.030899,-0.009276, 5.987902;;, + 161;3; 0.030899,-0.009276, 5.987902;;, + 162;3; 0.030899,-0.009276, 5.987902;;, + 163;3; 0.030899,-0.009276, 5.987902;;, + 164;3; 0.030899,-0.009276, 5.987902;;, + 165;3; 0.030899,-0.009276, 5.987902;;, + 166;3; 0.030899,-0.009276, 5.987902;;, + 167;3; 0.030899,-0.009276, 5.987902;;, + 168;3; 0.030899,-0.009276, 5.987902;;, + 169;3; 0.030899,-0.009276, 5.987902;;, + 170;3; 0.030899,-0.009276, 5.987902;;, + 171;3; 0.030899,-0.009276, 5.987902;;, + 172;3; 0.030899,-0.009276, 5.987902;;, + 173;3; 0.030899,-0.009276, 5.987902;;, + 174;3; 0.030899,-0.009276, 5.987902;;, + 175;3; 0.030899,-0.009276, 5.987902;;, + 176;3; 0.030899,-0.009276, 5.987902;;, + 177;3; 0.030899,-0.009276, 5.987902;;, + 178;3; 0.030899,-0.009276, 5.987902;;, + 179;3; 0.030899,-0.009276, 5.987902;;, + 180;3; 0.030899,-0.009276, 5.987902;;, + 181;3; 0.030899,-0.009276, 5.987902;;, + 182;3; 0.030899,-0.009276, 5.987902;;, + 183;3; 0.030899,-0.009276, 5.987902;;, + 184;3; 0.030899,-0.009276, 5.987902;;, + 185;3; 0.030899,-0.009276, 5.987902;;, + 186;3; 0.030899,-0.009276, 5.987902;;, + 187;3; 0.030899,-0.009276, 5.987902;;, + 188;3; 0.030899,-0.009276, 5.987902;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 189; + 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4;-0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4;-0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4;-0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4;-0.235815, 0.968955,-0.000000,-0.000000;;, + 85;4;-0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4;-0.247343, 0.965926,-0.000000,-0.000000;;, + 87;4;-0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4;-0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4;-0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235816, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3; 1.460671,-0.139217, 4.073730;;, + 1;3; 1.460671,-0.139217, 4.073730;;, + 2;3; 1.460671,-0.139217, 4.073730;;, + 3;3; 1.460671,-0.139217, 4.073730;;, + 4;3; 1.460671,-0.139217, 4.073730;;, + 5;3; 1.460671,-0.139217, 4.073730;;, + 6;3; 1.460671,-0.139217, 4.073730;;, + 7;3; 1.460671,-0.139217, 4.073730;;, + 8;3; 1.460671,-0.139217, 4.073730;;, + 9;3; 1.460671,-0.139217, 4.073730;;, + 10;3; 1.460671,-0.139217, 4.073730;;, + 11;3; 1.460671,-0.139217, 4.073730;;, + 12;3; 1.460671,-0.139217, 4.073730;;, + 13;3; 1.460671,-0.139217, 4.073730;;, + 14;3; 1.460671,-0.139217, 4.073730;;, + 15;3; 1.460671,-0.139217, 4.073730;;, + 16;3; 1.460671,-0.139217, 4.073730;;, + 17;3; 1.460671,-0.139217, 4.073730;;, + 18;3; 1.460671,-0.139217, 4.073730;;, + 19;3; 1.460671,-0.139217, 4.073730;;, + 20;3; 1.460671,-0.139217, 4.073730;;, + 21;3; 1.460671,-0.139217, 4.073730;;, + 22;3; 1.460671,-0.139217, 4.073730;;, + 23;3; 1.460671,-0.139217, 4.073730;;, + 24;3; 1.460671,-0.139217, 4.073730;;, + 25;3; 1.460671,-0.139217, 4.073730;;, + 26;3; 1.460671,-0.139217, 4.073730;;, + 27;3; 1.460671,-0.139217, 4.073730;;, + 28;3; 1.460671,-0.139217, 4.073730;;, + 29;3; 1.460671,-0.139217, 4.073730;;, + 30;3; 1.460671,-0.139217, 4.073730;;, + 31;3; 1.460671,-0.139217, 4.073730;;, + 32;3; 1.460671,-0.139217, 4.073730;;, + 33;3; 1.460671,-0.139217, 4.073730;;, + 34;3; 1.460671,-0.139217, 4.073730;;, + 35;3; 1.460671,-0.139217, 4.073730;;, + 36;3; 1.460671,-0.139217, 4.073730;;, + 37;3; 1.460671,-0.139217, 4.073730;;, + 38;3; 1.460671,-0.139217, 4.073730;;, + 39;3; 1.460671,-0.139217, 4.073730;;, + 40;3; 1.460671,-0.139217, 4.073730;;, + 41;3; 1.460671,-0.139217, 4.073730;;, + 42;3; 1.460671,-0.139217, 4.073730;;, + 43;3; 1.460671,-0.139217, 4.073730;;, + 44;3; 1.460671,-0.139217, 4.073730;;, + 45;3; 1.460671,-0.139217, 4.073730;;, + 46;3; 1.460671,-0.139217, 4.073730;;, + 47;3; 1.460671,-0.139217, 4.073730;;, + 48;3; 1.460671,-0.139217, 4.073730;;, + 49;3; 1.460671,-0.139217, 4.073730;;, + 50;3; 1.460671,-0.139217, 4.073730;;, + 51;3; 1.460671,-0.139217, 4.073730;;, + 52;3; 1.460671,-0.139217, 4.073730;;, + 53;3; 1.460671,-0.139217, 4.073730;;, + 54;3; 1.460671,-0.139217, 4.073730;;, + 55;3; 1.460671,-0.139217, 4.073730;;, + 56;3; 1.460671,-0.139217, 4.073730;;, + 57;3; 1.460671,-0.139217, 4.073730;;, + 58;3; 1.460671,-0.139217, 4.073730;;, + 59;3; 1.460671,-0.139217, 4.073730;;, + 60;3; 1.460671,-0.139217, 4.073730;;, + 61;3; 1.460671,-0.139217, 4.073730;;, + 62;3; 1.460671,-0.139217, 4.073730;;, + 63;3; 1.460671,-0.139217, 4.073730;;, + 64;3; 1.460671,-0.139217, 4.073730;;, + 65;3; 1.460671,-0.139217, 4.073730;;, + 66;3; 1.460671,-0.139217, 4.073730;;, + 67;3; 1.460671,-0.139217, 4.073730;;, + 68;3; 1.460671,-0.139217, 4.073730;;, + 69;3; 1.460671,-0.139217, 4.073730;;, + 70;3; 1.460671,-0.139217, 4.073730;;, + 71;3; 1.460671,-0.139217, 4.073730;;, + 72;3; 1.460671,-0.139217, 4.073730;;, + 73;3; 1.460671,-0.139217, 4.073730;;, + 74;3; 1.460671,-0.139217, 4.073730;;, + 75;3; 1.460671,-0.139217, 4.073730;;, + 76;3; 1.460671,-0.139217, 4.073730;;, + 77;3; 1.460671,-0.139217, 4.073730;;, + 78;3; 1.460671,-0.139217, 4.073730;;, + 79;3; 1.460671,-0.139217, 4.073730;;, + 80;3; 1.460671,-0.139217, 4.073730;;, + 81;3; 1.460671,-0.139217, 4.073730;;, + 82;3; 1.460671,-0.139217, 4.073730;;, + 83;3; 1.460671,-0.139217, 4.073730;;, + 84;3; 1.460671,-0.139217, 4.073730;;, + 85;3; 1.460671,-0.139217, 4.073730;;, + 86;3; 1.460671,-0.139217, 4.073730;;, + 87;3; 1.460671,-0.139217, 4.073730;;, + 88;3; 1.460671,-0.139217, 4.073730;;, + 89;3; 1.460671,-0.139217, 4.073730;;, + 90;3; 1.460671,-0.139217, 4.073730;;, + 91;3; 1.460671,-0.139217, 4.073730;;, + 92;3; 1.460671,-0.139217, 4.073730;;, + 93;3; 1.460671,-0.139217, 4.073730;;, + 94;3; 1.460671,-0.139217, 4.073730;;, + 95;3; 1.460671,-0.139217, 4.073730;;, + 96;3; 1.460671,-0.139217, 4.073730;;, + 97;3; 1.460671,-0.139217, 4.073730;;, + 98;3; 1.460671,-0.139217, 4.073730;;, + 99;3; 1.460671,-0.139217, 4.073730;;, + 100;3; 1.460671,-0.139217, 4.073730;;, + 101;3; 1.460671,-0.139217, 4.073730;;, + 102;3; 1.460671,-0.139217, 4.073730;;, + 103;3; 1.460671,-0.139217, 4.073730;;, + 104;3; 1.460671,-0.139217, 4.073730;;, + 105;3; 1.460671,-0.139217, 4.073730;;, + 106;3; 1.460671,-0.139217, 4.073730;;, + 107;3; 1.460671,-0.139217, 4.073730;;, + 108;3; 1.460671,-0.139217, 4.073730;;, + 109;3; 1.460671,-0.139217, 4.073730;;, + 110;3; 1.460671,-0.139217, 4.073730;;, + 111;3; 1.460671,-0.139217, 4.073730;;, + 112;3; 1.460671,-0.139217, 4.073730;;, + 113;3; 1.460671,-0.139217, 4.073730;;, + 114;3; 1.460671,-0.139217, 4.073730;;, + 115;3; 1.460671,-0.139217, 4.073730;;, + 116;3; 1.460671,-0.139217, 4.073730;;, + 117;3; 1.460671,-0.139217, 4.073730;;, + 118;3; 1.460671,-0.139217, 4.073730;;, + 119;3; 1.460671,-0.139217, 4.073730;;, + 120;3; 1.460671,-0.139217, 4.073730;;, + 121;3; 1.460671,-0.139217, 4.073730;;, + 122;3; 1.460671,-0.139217, 4.073730;;, + 123;3; 1.460671,-0.139217, 4.073730;;, + 124;3; 1.460671,-0.139217, 4.073730;;, + 125;3; 1.460671,-0.139217, 4.073730;;, + 126;3; 1.460671,-0.139217, 4.073730;;, + 127;3; 1.460671,-0.139217, 4.073730;;, + 128;3; 1.460671,-0.139217, 4.073730;;, + 129;3; 1.460671,-0.139217, 4.073730;;, + 130;3; 1.460671,-0.139217, 4.073730;;, + 131;3; 1.460671,-0.139217, 4.073730;;, + 132;3; 1.460671,-0.139217, 4.073730;;, + 133;3; 1.460671,-0.139217, 4.073730;;, + 134;3; 1.460671,-0.139217, 4.073730;;, + 135;3; 1.460671,-0.139217, 4.073730;;, + 136;3; 1.460671,-0.139217, 4.073730;;, + 137;3; 1.460671,-0.139217, 4.073730;;, + 138;3; 1.460671,-0.139217, 4.073730;;, + 139;3; 1.460671,-0.139217, 4.073730;;, + 140;3; 1.460671,-0.139217, 4.073730;;, + 141;3; 1.460671,-0.139217, 4.073730;;, + 142;3; 1.460671,-0.139217, 4.073730;;, + 143;3; 1.460671,-0.139217, 4.073730;;, + 144;3; 1.460671,-0.139217, 4.073730;;, + 145;3; 1.460671,-0.139217, 4.073730;;, + 146;3; 1.460671,-0.139217, 4.073730;;, + 147;3; 1.460671,-0.139217, 4.073730;;, + 148;3; 1.460671,-0.139217, 4.073730;;, + 149;3; 1.460671,-0.139217, 4.073730;;, + 150;3; 1.460671,-0.139217, 4.073730;;, + 151;3; 1.460671,-0.139217, 4.073730;;, + 152;3; 1.460671,-0.139217, 4.073730;;, + 153;3; 1.460671,-0.139217, 4.073730;;, + 154;3; 1.460671,-0.139217, 4.073730;;, + 155;3; 1.460671,-0.139217, 4.073730;;, + 156;3; 1.460671,-0.139217, 4.073730;;, + 157;3; 1.460671,-0.139217, 4.073730;;, + 158;3; 1.460671,-0.139217, 4.073730;;, + 159;3; 1.460671,-0.139217, 4.073730;;, + 160;3; 1.460671,-0.139217, 4.073730;;, + 161;3; 1.460671,-0.139217, 4.073730;;, + 162;3; 1.460671,-0.139217, 4.073730;;, + 163;3; 1.460671,-0.139217, 4.073730;;, + 164;3; 1.460671,-0.139217, 4.073730;;, + 165;3; 1.460671,-0.139217, 4.073730;;, + 166;3; 1.460671,-0.139217, 4.073730;;, + 167;3; 1.460671,-0.139217, 4.073730;;, + 168;3; 1.460671,-0.139217, 4.073730;;, + 169;3; 1.460671,-0.139217, 4.073730;;, + 170;3; 1.460671,-0.139217, 4.073730;;, + 171;3; 1.460671,-0.139217, 4.073730;;, + 172;3; 1.460671,-0.139217, 4.073730;;, + 173;3; 1.460671,-0.139217, 4.073730;;, + 174;3; 1.460671,-0.139217, 4.073730;;, + 175;3; 1.460671,-0.139217, 4.073730;;, + 176;3; 1.460671,-0.139217, 4.073730;;, + 177;3; 1.460671,-0.139217, 4.073730;;, + 178;3; 1.460671,-0.139217, 4.073730;;, + 179;3; 1.460671,-0.139217, 4.073730;;, + 180;3; 1.460671,-0.139217, 4.073730;;, + 181;3; 1.460671,-0.139217, 4.073730;;, + 182;3; 1.460671,-0.139217, 4.073730;;, + 183;3; 1.460671,-0.139217, 4.073730;;, + 184;3; 1.460671,-0.139217, 4.073730;;, + 185;3; 1.460671,-0.139217, 4.073730;;, + 186;3; 1.460671,-0.139217, 4.073730;;, + 187;3; 1.460671,-0.139217, 4.073730;;, + 188;3; 1.460671,-0.139217, 4.073730;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 189; + 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235816, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4;-0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4;-0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4;-0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4;-0.247343, 0.965926,-0.000000,-0.000000;;, + 95;4;-0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4;-0.235815, 0.968955,-0.000000,-0.000000;;, + 97;4;-0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4;-0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4;-0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3; 1.460671,-0.139216,-3.633328;;, + 1;3; 1.460671,-0.139216,-3.633328;;, + 2;3; 1.460671,-0.139216,-3.633328;;, + 3;3; 1.460671,-0.139216,-3.633328;;, + 4;3; 1.460671,-0.139216,-3.633328;;, + 5;3; 1.460671,-0.139216,-3.633328;;, + 6;3; 1.460671,-0.139216,-3.633328;;, + 7;3; 1.460671,-0.139216,-3.633328;;, + 8;3; 1.460671,-0.139216,-3.633328;;, + 9;3; 1.460671,-0.139216,-3.633328;;, + 10;3; 1.460671,-0.139216,-3.633328;;, + 11;3; 1.460671,-0.139216,-3.633328;;, + 12;3; 1.460671,-0.139216,-3.633328;;, + 13;3; 1.460671,-0.139216,-3.633328;;, + 14;3; 1.460671,-0.139216,-3.633328;;, + 15;3; 1.460671,-0.139216,-3.633328;;, + 16;3; 1.460671,-0.139216,-3.633328;;, + 17;3; 1.460671,-0.139216,-3.633328;;, + 18;3; 1.460671,-0.139216,-3.633328;;, + 19;3; 1.460671,-0.139216,-3.633328;;, + 20;3; 1.460671,-0.139216,-3.633328;;, + 21;3; 1.460671,-0.139216,-3.633328;;, + 22;3; 1.460671,-0.139216,-3.633328;;, + 23;3; 1.460671,-0.139216,-3.633328;;, + 24;3; 1.460671,-0.139216,-3.633328;;, + 25;3; 1.460671,-0.139216,-3.633328;;, + 26;3; 1.460671,-0.139216,-3.633328;;, + 27;3; 1.460671,-0.139216,-3.633328;;, + 28;3; 1.460671,-0.139216,-3.633328;;, + 29;3; 1.460671,-0.139216,-3.633328;;, + 30;3; 1.460671,-0.139216,-3.633328;;, + 31;3; 1.460671,-0.139216,-3.633328;;, + 32;3; 1.460671,-0.139216,-3.633328;;, + 33;3; 1.460671,-0.139216,-3.633328;;, + 34;3; 1.460671,-0.139216,-3.633328;;, + 35;3; 1.460671,-0.139216,-3.633328;;, + 36;3; 1.460671,-0.139216,-3.633328;;, + 37;3; 1.460671,-0.139216,-3.633328;;, + 38;3; 1.460671,-0.139216,-3.633328;;, + 39;3; 1.460671,-0.139216,-3.633328;;, + 40;3; 1.460671,-0.139216,-3.633328;;, + 41;3; 1.460671,-0.139216,-3.633328;;, + 42;3; 1.460671,-0.139216,-3.633328;;, + 43;3; 1.460671,-0.139216,-3.633328;;, + 44;3; 1.460671,-0.139216,-3.633328;;, + 45;3; 1.460671,-0.139216,-3.633328;;, + 46;3; 1.460671,-0.139216,-3.633328;;, + 47;3; 1.460671,-0.139216,-3.633328;;, + 48;3; 1.460671,-0.139216,-3.633328;;, + 49;3; 1.460671,-0.139216,-3.633328;;, + 50;3; 1.460671,-0.139216,-3.633328;;, + 51;3; 1.460671,-0.139216,-3.633328;;, + 52;3; 1.460671,-0.139216,-3.633328;;, + 53;3; 1.460671,-0.139216,-3.633328;;, + 54;3; 1.460671,-0.139216,-3.633328;;, + 55;3; 1.460671,-0.139216,-3.633328;;, + 56;3; 1.460671,-0.139216,-3.633328;;, + 57;3; 1.460671,-0.139216,-3.633328;;, + 58;3; 1.460671,-0.139216,-3.633328;;, + 59;3; 1.460671,-0.139216,-3.633328;;, + 60;3; 1.460671,-0.139216,-3.633328;;, + 61;3; 1.460671,-0.139216,-3.633328;;, + 62;3; 1.460671,-0.139216,-3.633328;;, + 63;3; 1.460671,-0.139216,-3.633328;;, + 64;3; 1.460671,-0.139216,-3.633328;;, + 65;3; 1.460671,-0.139216,-3.633328;;, + 66;3; 1.460671,-0.139216,-3.633328;;, + 67;3; 1.460671,-0.139216,-3.633328;;, + 68;3; 1.460671,-0.139216,-3.633328;;, + 69;3; 1.460671,-0.139216,-3.633328;;, + 70;3; 1.460671,-0.139216,-3.633328;;, + 71;3; 1.460671,-0.139216,-3.633328;;, + 72;3; 1.460671,-0.139216,-3.633328;;, + 73;3; 1.460671,-0.139216,-3.633328;;, + 74;3; 1.460671,-0.139216,-3.633328;;, + 75;3; 1.460671,-0.139216,-3.633328;;, + 76;3; 1.460671,-0.139216,-3.633328;;, + 77;3; 1.460671,-0.139216,-3.633328;;, + 78;3; 1.460671,-0.139216,-3.633328;;, + 79;3; 1.460671,-0.139216,-3.633328;;, + 80;3; 1.460671,-0.139216,-3.633328;;, + 81;3; 1.460671,-0.139216,-3.633328;;, + 82;3; 1.460671,-0.139216,-3.633328;;, + 83;3; 1.460671,-0.139216,-3.633328;;, + 84;3; 1.460671,-0.139216,-3.633328;;, + 85;3; 1.460671,-0.139216,-3.633328;;, + 86;3; 1.460671,-0.139216,-3.633328;;, + 87;3; 1.460671,-0.139216,-3.633328;;, + 88;3; 1.460671,-0.139216,-3.633328;;, + 89;3; 1.460671,-0.139216,-3.633328;;, + 90;3; 1.460671,-0.139216,-3.633328;;, + 91;3; 1.460671,-0.139216,-3.633328;;, + 92;3; 1.460671,-0.139216,-3.633328;;, + 93;3; 1.460671,-0.139216,-3.633328;;, + 94;3; 1.460671,-0.139216,-3.633328;;, + 95;3; 1.460671,-0.139216,-3.633328;;, + 96;3; 1.460671,-0.139216,-3.633328;;, + 97;3; 1.460671,-0.139216,-3.633328;;, + 98;3; 1.460671,-0.139216,-3.633328;;, + 99;3; 1.460671,-0.139216,-3.633328;;, + 100;3; 1.460671,-0.139216,-3.633328;;, + 101;3; 1.460671,-0.139216,-3.633328;;, + 102;3; 1.460671,-0.139216,-3.633328;;, + 103;3; 1.460671,-0.139216,-3.633328;;, + 104;3; 1.460671,-0.139216,-3.633328;;, + 105;3; 1.460671,-0.139216,-3.633328;;, + 106;3; 1.460671,-0.139216,-3.633328;;, + 107;3; 1.460671,-0.139216,-3.633328;;, + 108;3; 1.460671,-0.139216,-3.633328;;, + 109;3; 1.460671,-0.139216,-3.633328;;, + 110;3; 1.460671,-0.139216,-3.633328;;, + 111;3; 1.460671,-0.139216,-3.633328;;, + 112;3; 1.460671,-0.139216,-3.633328;;, + 113;3; 1.460671,-0.139216,-3.633328;;, + 114;3; 1.460671,-0.139216,-3.633328;;, + 115;3; 1.460671,-0.139216,-3.633328;;, + 116;3; 1.460671,-0.139216,-3.633328;;, + 117;3; 1.460671,-0.139216,-3.633328;;, + 118;3; 1.460671,-0.139216,-3.633328;;, + 119;3; 1.460671,-0.139216,-3.633328;;, + 120;3; 1.460671,-0.139216,-3.633328;;, + 121;3; 1.460671,-0.139216,-3.633328;;, + 122;3; 1.460671,-0.139216,-3.633328;;, + 123;3; 1.460671,-0.139216,-3.633328;;, + 124;3; 1.460671,-0.139216,-3.633328;;, + 125;3; 1.460671,-0.139216,-3.633328;;, + 126;3; 1.460671,-0.139216,-3.633328;;, + 127;3; 1.460671,-0.139216,-3.633328;;, + 128;3; 1.460671,-0.139216,-3.633328;;, + 129;3; 1.460671,-0.139216,-3.633328;;, + 130;3; 1.460671,-0.139216,-3.633328;;, + 131;3; 1.460671,-0.139216,-3.633328;;, + 132;3; 1.460671,-0.139216,-3.633328;;, + 133;3; 1.460671,-0.139216,-3.633328;;, + 134;3; 1.460671,-0.139216,-3.633328;;, + 135;3; 1.460671,-0.139216,-3.633328;;, + 136;3; 1.460671,-0.139216,-3.633328;;, + 137;3; 1.460671,-0.139216,-3.633328;;, + 138;3; 1.460671,-0.139216,-3.633328;;, + 139;3; 1.460671,-0.139216,-3.633328;;, + 140;3; 1.460671,-0.139216,-3.633328;;, + 141;3; 1.460671,-0.139216,-3.633328;;, + 142;3; 1.460671,-0.139216,-3.633328;;, + 143;3; 1.460671,-0.139216,-3.633328;;, + 144;3; 1.460671,-0.139216,-3.633328;;, + 145;3; 1.460671,-0.139216,-3.633328;;, + 146;3; 1.460671,-0.139216,-3.633328;;, + 147;3; 1.460671,-0.139216,-3.633328;;, + 148;3; 1.460671,-0.139216,-3.633328;;, + 149;3; 1.460671,-0.139216,-3.633328;;, + 150;3; 1.460671,-0.139216,-3.633328;;, + 151;3; 1.460671,-0.139216,-3.633328;;, + 152;3; 1.460671,-0.139216,-3.633328;;, + 153;3; 1.460671,-0.139216,-3.633328;;, + 154;3; 1.460671,-0.139216,-3.633328;;, + 155;3; 1.460671,-0.139216,-3.633328;;, + 156;3; 1.460671,-0.139216,-3.633328;;, + 157;3; 1.460671,-0.139216,-3.633328;;, + 158;3; 1.460671,-0.139216,-3.633328;;, + 159;3; 1.460671,-0.139216,-3.633328;;, + 160;3; 1.460671,-0.139216,-3.633328;;, + 161;3; 1.460671,-0.139216,-3.633328;;, + 162;3; 1.460671,-0.139216,-3.633328;;, + 163;3; 1.460671,-0.139216,-3.633328;;, + 164;3; 1.460671,-0.139216,-3.633328;;, + 165;3; 1.460671,-0.139216,-3.633328;;, + 166;3; 1.460671,-0.139216,-3.633328;;, + 167;3; 1.460671,-0.139216,-3.633328;;, + 168;3; 1.460671,-0.139216,-3.633328;;, + 169;3; 1.460671,-0.139216,-3.633328;;, + 170;3; 1.460671,-0.139216,-3.633328;;, + 171;3; 1.460671,-0.139216,-3.633328;;, + 172;3; 1.460671,-0.139216,-3.633328;;, + 173;3; 1.460671,-0.139216,-3.633328;;, + 174;3; 1.460671,-0.139216,-3.633328;;, + 175;3; 1.460671,-0.139216,-3.633328;;, + 176;3; 1.460671,-0.139216,-3.633328;;, + 177;3; 1.460671,-0.139216,-3.633328;;, + 178;3; 1.460671,-0.139216,-3.633328;;, + 179;3; 1.460671,-0.139216,-3.633328;;, + 180;3; 1.460671,-0.139216,-3.633328;;, + 181;3; 1.460671,-0.139216,-3.633328;;, + 182;3; 1.460671,-0.139216,-3.633328;;, + 183;3; 1.460671,-0.139216,-3.633328;;, + 184;3; 1.460671,-0.139216,-3.633328;;, + 185;3; 1.460671,-0.139216,-3.633328;;, + 186;3; 1.460671,-0.139216,-3.633328;;, + 187;3; 1.460671,-0.139216,-3.633328;;, + 188;3; 1.460671,-0.139216,-3.633328;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 189; + 0;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, + 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 90;4;-0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4;-0.083204, 0.965926,-0.000000,-0.000000;;, + 92;4;-0.156652, 0.965926,-0.000000,-0.000000;;, + 93;4;-0.212807, 0.965926,-0.000000,-0.000000;;, + 94;4;-0.247343, 0.965926,-0.000000,-0.000000;;, + 95;4;-0.258819, 0.965926,-0.000000,-0.000000;;, + 96;4;-0.235815, 0.968955,-0.000000,-0.000000;;, + 97;4;-0.171026, 0.977486,-0.000000,-0.000000;;, + 98;4;-0.087830, 0.988440,-0.000000,-0.000000;;, + 99;4;-0.023017, 0.996971,-0.000000,-0.000000;;, + 100;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 165;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 166;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 167;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 168;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 170;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4;-0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3;-1.438651,-0.139217, 4.073730;;, + 1;3;-1.438651,-0.139217, 4.073730;;, + 2;3;-1.438651,-0.139217, 4.073730;;, + 3;3;-1.438651,-0.139217, 4.073730;;, + 4;3;-1.438651,-0.139217, 4.073730;;, + 5;3;-1.438651,-0.139217, 4.073730;;, + 6;3;-1.438651,-0.139217, 4.073730;;, + 7;3;-1.438651,-0.139217, 4.073730;;, + 8;3;-1.438651,-0.139217, 4.073730;;, + 9;3;-1.438651,-0.139217, 4.073730;;, + 10;3;-1.438651,-0.139217, 4.073730;;, + 11;3;-1.438651,-0.139217, 4.073730;;, + 12;3;-1.438651,-0.139217, 4.073730;;, + 13;3;-1.438651,-0.139217, 4.073730;;, + 14;3;-1.438651,-0.139217, 4.073730;;, + 15;3;-1.438651,-0.139217, 4.073730;;, + 16;3;-1.438651,-0.139217, 4.073730;;, + 17;3;-1.438651,-0.139217, 4.073730;;, + 18;3;-1.438651,-0.139217, 4.073730;;, + 19;3;-1.438651,-0.139217, 4.073730;;, + 20;3;-1.438651,-0.139217, 4.073730;;, + 21;3;-1.438651,-0.139217, 4.073730;;, + 22;3;-1.438651,-0.139217, 4.073730;;, + 23;3;-1.438651,-0.139217, 4.073730;;, + 24;3;-1.438651,-0.139217, 4.073730;;, + 25;3;-1.438651,-0.139217, 4.073730;;, + 26;3;-1.438651,-0.139217, 4.073730;;, + 27;3;-1.438651,-0.139217, 4.073730;;, + 28;3;-1.438651,-0.139217, 4.073730;;, + 29;3;-1.438651,-0.139217, 4.073730;;, + 30;3;-1.438651,-0.139217, 4.073730;;, + 31;3;-1.438651,-0.139217, 4.073730;;, + 32;3;-1.438651,-0.139217, 4.073730;;, + 33;3;-1.438651,-0.139217, 4.073730;;, + 34;3;-1.438651,-0.139217, 4.073730;;, + 35;3;-1.438651,-0.139217, 4.073730;;, + 36;3;-1.438651,-0.139217, 4.073730;;, + 37;3;-1.438651,-0.139217, 4.073730;;, + 38;3;-1.438651,-0.139217, 4.073730;;, + 39;3;-1.438651,-0.139217, 4.073730;;, + 40;3;-1.438651,-0.139217, 4.073730;;, + 41;3;-1.438651,-0.139217, 4.073730;;, + 42;3;-1.438651,-0.139217, 4.073730;;, + 43;3;-1.438651,-0.139217, 4.073730;;, + 44;3;-1.438651,-0.139217, 4.073730;;, + 45;3;-1.438651,-0.139217, 4.073730;;, + 46;3;-1.438651,-0.139217, 4.073730;;, + 47;3;-1.438651,-0.139217, 4.073730;;, + 48;3;-1.438651,-0.139217, 4.073730;;, + 49;3;-1.438651,-0.139217, 4.073730;;, + 50;3;-1.438651,-0.139217, 4.073730;;, + 51;3;-1.438651,-0.139217, 4.073730;;, + 52;3;-1.438651,-0.139217, 4.073730;;, + 53;3;-1.438651,-0.139217, 4.073730;;, + 54;3;-1.438651,-0.139217, 4.073730;;, + 55;3;-1.438651,-0.139217, 4.073730;;, + 56;3;-1.438651,-0.139217, 4.073730;;, + 57;3;-1.438651,-0.139217, 4.073730;;, + 58;3;-1.438651,-0.139217, 4.073730;;, + 59;3;-1.438651,-0.139217, 4.073730;;, + 60;3;-1.438651,-0.139217, 4.073730;;, + 61;3;-1.438651,-0.139217, 4.073730;;, + 62;3;-1.438651,-0.139217, 4.073730;;, + 63;3;-1.438651,-0.139217, 4.073730;;, + 64;3;-1.438651,-0.139217, 4.073730;;, + 65;3;-1.438651,-0.139217, 4.073730;;, + 66;3;-1.438651,-0.139217, 4.073730;;, + 67;3;-1.438651,-0.139217, 4.073730;;, + 68;3;-1.438651,-0.139217, 4.073730;;, + 69;3;-1.438651,-0.139217, 4.073730;;, + 70;3;-1.438651,-0.139217, 4.073730;;, + 71;3;-1.438651,-0.139217, 4.073730;;, + 72;3;-1.438651,-0.139217, 4.073730;;, + 73;3;-1.438651,-0.139217, 4.073730;;, + 74;3;-1.438651,-0.139217, 4.073730;;, + 75;3;-1.438651,-0.139217, 4.073730;;, + 76;3;-1.438651,-0.139217, 4.073730;;, + 77;3;-1.438651,-0.139217, 4.073730;;, + 78;3;-1.438651,-0.139217, 4.073730;;, + 79;3;-1.438651,-0.139217, 4.073730;;, + 80;3;-1.438651,-0.139217, 4.073730;;, + 81;3;-1.438651,-0.139217, 4.073730;;, + 82;3;-1.438651,-0.139217, 4.073730;;, + 83;3;-1.438651,-0.139217, 4.073730;;, + 84;3;-1.438651,-0.139217, 4.073730;;, + 85;3;-1.438651,-0.139217, 4.073730;;, + 86;3;-1.438651,-0.139217, 4.073730;;, + 87;3;-1.438651,-0.139217, 4.073730;;, + 88;3;-1.438651,-0.139217, 4.073730;;, + 89;3;-1.438651,-0.139217, 4.073730;;, + 90;3;-1.438651,-0.139217, 4.073730;;, + 91;3;-1.438651,-0.139217, 4.073730;;, + 92;3;-1.438651,-0.139217, 4.073730;;, + 93;3;-1.438651,-0.139217, 4.073730;;, + 94;3;-1.438651,-0.139217, 4.073730;;, + 95;3;-1.438651,-0.139217, 4.073730;;, + 96;3;-1.438651,-0.139217, 4.073730;;, + 97;3;-1.438651,-0.139217, 4.073730;;, + 98;3;-1.438651,-0.139217, 4.073730;;, + 99;3;-1.438651,-0.139217, 4.073730;;, + 100;3;-1.438651,-0.139217, 4.073730;;, + 101;3;-1.438651,-0.139217, 4.073730;;, + 102;3;-1.438651,-0.139217, 4.073730;;, + 103;3;-1.438651,-0.139217, 4.073730;;, + 104;3;-1.438651,-0.139217, 4.073730;;, + 105;3;-1.438651,-0.139217, 4.073730;;, + 106;3;-1.438651,-0.139217, 4.073730;;, + 107;3;-1.438651,-0.139217, 4.073730;;, + 108;3;-1.438651,-0.139217, 4.073730;;, + 109;3;-1.438651,-0.139217, 4.073730;;, + 110;3;-1.438651,-0.139217, 4.073730;;, + 111;3;-1.438651,-0.139217, 4.073730;;, + 112;3;-1.438651,-0.139217, 4.073730;;, + 113;3;-1.438651,-0.139217, 4.073730;;, + 114;3;-1.438651,-0.139217, 4.073730;;, + 115;3;-1.438651,-0.139217, 4.073730;;, + 116;3;-1.438651,-0.139217, 4.073730;;, + 117;3;-1.438651,-0.139217, 4.073730;;, + 118;3;-1.438651,-0.139217, 4.073730;;, + 119;3;-1.438651,-0.139217, 4.073730;;, + 120;3;-1.438651,-0.139217, 4.073730;;, + 121;3;-1.438651,-0.139217, 4.073730;;, + 122;3;-1.438651,-0.139217, 4.073730;;, + 123;3;-1.438651,-0.139217, 4.073730;;, + 124;3;-1.438651,-0.139217, 4.073730;;, + 125;3;-1.438651,-0.139217, 4.073730;;, + 126;3;-1.438651,-0.139217, 4.073730;;, + 127;3;-1.438651,-0.139217, 4.073730;;, + 128;3;-1.438651,-0.139217, 4.073730;;, + 129;3;-1.438651,-0.139217, 4.073730;;, + 130;3;-1.438651,-0.139217, 4.073730;;, + 131;3;-1.438651,-0.139217, 4.073730;;, + 132;3;-1.438651,-0.139217, 4.073730;;, + 133;3;-1.438651,-0.139217, 4.073730;;, + 134;3;-1.438651,-0.139217, 4.073730;;, + 135;3;-1.438651,-0.139217, 4.073730;;, + 136;3;-1.438651,-0.139217, 4.073730;;, + 137;3;-1.438651,-0.139217, 4.073730;;, + 138;3;-1.438651,-0.139217, 4.073730;;, + 139;3;-1.438651,-0.139217, 4.073730;;, + 140;3;-1.438651,-0.139217, 4.073730;;, + 141;3;-1.438651,-0.139217, 4.073730;;, + 142;3;-1.438651,-0.139217, 4.073730;;, + 143;3;-1.438651,-0.139217, 4.073730;;, + 144;3;-1.438651,-0.139217, 4.073730;;, + 145;3;-1.438651,-0.139217, 4.073730;;, + 146;3;-1.438651,-0.139217, 4.073730;;, + 147;3;-1.438651,-0.139217, 4.073730;;, + 148;3;-1.438651,-0.139217, 4.073730;;, + 149;3;-1.438651,-0.139217, 4.073730;;, + 150;3;-1.438651,-0.139217, 4.073730;;, + 151;3;-1.438651,-0.139217, 4.073730;;, + 152;3;-1.438651,-0.139217, 4.073730;;, + 153;3;-1.438651,-0.139217, 4.073730;;, + 154;3;-1.438651,-0.139217, 4.073730;;, + 155;3;-1.438651,-0.139217, 4.073730;;, + 156;3;-1.438651,-0.139217, 4.073730;;, + 157;3;-1.438651,-0.139217, 4.073730;;, + 158;3;-1.438651,-0.139217, 4.073730;;, + 159;3;-1.438651,-0.139217, 4.073730;;, + 160;3;-1.438651,-0.139217, 4.073730;;, + 161;3;-1.438651,-0.139217, 4.073730;;, + 162;3;-1.438651,-0.139217, 4.073730;;, + 163;3;-1.438651,-0.139217, 4.073730;;, + 164;3;-1.438651,-0.139217, 4.073730;;, + 165;3;-1.438651,-0.139217, 4.073730;;, + 166;3;-1.438651,-0.139217, 4.073730;;, + 167;3;-1.438651,-0.139217, 4.073730;;, + 168;3;-1.438651,-0.139217, 4.073730;;, + 169;3;-1.438651,-0.139217, 4.073730;;, + 170;3;-1.438651,-0.139217, 4.073730;;, + 171;3;-1.438651,-0.139217, 4.073730;;, + 172;3;-1.438651,-0.139217, 4.073730;;, + 173;3;-1.438651,-0.139217, 4.073730;;, + 174;3;-1.438651,-0.139217, 4.073730;;, + 175;3;-1.438651,-0.139217, 4.073730;;, + 176;3;-1.438651,-0.139217, 4.073730;;, + 177;3;-1.438651,-0.139217, 4.073730;;, + 178;3;-1.438651,-0.139217, 4.073730;;, + 179;3;-1.438651,-0.139217, 4.073730;;, + 180;3;-1.438651,-0.139217, 4.073730;;, + 181;3;-1.438651,-0.139217, 4.073730;;, + 182;3;-1.438651,-0.139217, 4.073730;;, + 183;3;-1.438651,-0.139217, 4.073730;;, + 184;3;-1.438651,-0.139217, 4.073730;;, + 185;3;-1.438651,-0.139217, 4.073730;;, + 186;3;-1.438651,-0.139217, 4.073730;;, + 187;3;-1.438651,-0.139217, 4.073730;;, + 188;3;-1.438651,-0.139217, 4.073730;;; + } + } + Animation { + {Armature_RR_leg} + AnimationKey { // Rotation + 0; + 189; + 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 80;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 81;4;-0.023017, 0.996971,-0.000000,-0.000000;;, + 82;4;-0.087830, 0.988440,-0.000000,-0.000000;;, + 83;4;-0.171026, 0.977486,-0.000000,-0.000000;;, + 84;4;-0.235815, 0.968955,-0.000000,-0.000000;;, + 85;4;-0.258819, 0.965926,-0.000000,-0.000000;;, + 86;4;-0.247343, 0.965926,-0.000000,-0.000000;;, + 87;4;-0.212807, 0.965926,-0.000000,-0.000000;;, + 88;4;-0.156652, 0.965926,-0.000000,-0.000000;;, + 89;4;-0.083204, 0.965926,-0.000000,-0.000000;;, + 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, + 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, + 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, + 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, + 94;4; 0.247344, 0.965926, 0.000000,-0.000000;;, + 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, + 96;4; 0.235816, 0.968955, 0.000000,-0.000000;;, + 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, + 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, + 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, + 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, + 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3;-1.438651,-0.139216,-3.633328;;, + 1;3;-1.438651,-0.139216,-3.633328;;, + 2;3;-1.438651,-0.139216,-3.633328;;, + 3;3;-1.438651,-0.139216,-3.633328;;, + 4;3;-1.438651,-0.139216,-3.633328;;, + 5;3;-1.438651,-0.139216,-3.633328;;, + 6;3;-1.438651,-0.139216,-3.633328;;, + 7;3;-1.438651,-0.139216,-3.633328;;, + 8;3;-1.438651,-0.139216,-3.633328;;, + 9;3;-1.438651,-0.139216,-3.633328;;, + 10;3;-1.438651,-0.139216,-3.633328;;, + 11;3;-1.438651,-0.139216,-3.633328;;, + 12;3;-1.438651,-0.139216,-3.633328;;, + 13;3;-1.438651,-0.139216,-3.633328;;, + 14;3;-1.438651,-0.139216,-3.633328;;, + 15;3;-1.438651,-0.139216,-3.633328;;, + 16;3;-1.438651,-0.139216,-3.633328;;, + 17;3;-1.438651,-0.139216,-3.633328;;, + 18;3;-1.438651,-0.139216,-3.633328;;, + 19;3;-1.438651,-0.139216,-3.633328;;, + 20;3;-1.438651,-0.139216,-3.633328;;, + 21;3;-1.438651,-0.139216,-3.633328;;, + 22;3;-1.438651,-0.139216,-3.633328;;, + 23;3;-1.438651,-0.139216,-3.633328;;, + 24;3;-1.438651,-0.139216,-3.633328;;, + 25;3;-1.438651,-0.139216,-3.633328;;, + 26;3;-1.438651,-0.139216,-3.633328;;, + 27;3;-1.438651,-0.139216,-3.633328;;, + 28;3;-1.438651,-0.139216,-3.633328;;, + 29;3;-1.438651,-0.139216,-3.633328;;, + 30;3;-1.438651,-0.139216,-3.633328;;, + 31;3;-1.438651,-0.139216,-3.633328;;, + 32;3;-1.438651,-0.139216,-3.633328;;, + 33;3;-1.438651,-0.139216,-3.633328;;, + 34;3;-1.438651,-0.139216,-3.633328;;, + 35;3;-1.438651,-0.139216,-3.633328;;, + 36;3;-1.438651,-0.139216,-3.633328;;, + 37;3;-1.438651,-0.139216,-3.633328;;, + 38;3;-1.438651,-0.139216,-3.633328;;, + 39;3;-1.438651,-0.139216,-3.633328;;, + 40;3;-1.438651,-0.139216,-3.633328;;, + 41;3;-1.438651,-0.139216,-3.633328;;, + 42;3;-1.438651,-0.139216,-3.633328;;, + 43;3;-1.438651,-0.139216,-3.633328;;, + 44;3;-1.438651,-0.139216,-3.633328;;, + 45;3;-1.438651,-0.139216,-3.633328;;, + 46;3;-1.438651,-0.139216,-3.633328;;, + 47;3;-1.438651,-0.139216,-3.633328;;, + 48;3;-1.438651,-0.139216,-3.633328;;, + 49;3;-1.438651,-0.139216,-3.633328;;, + 50;3;-1.438651,-0.139216,-3.633328;;, + 51;3;-1.438651,-0.139216,-3.633328;;, + 52;3;-1.438651,-0.139216,-3.633328;;, + 53;3;-1.438651,-0.139216,-3.633328;;, + 54;3;-1.438651,-0.139216,-3.633328;;, + 55;3;-1.438651,-0.139216,-3.633328;;, + 56;3;-1.438651,-0.139216,-3.633328;;, + 57;3;-1.438651,-0.139216,-3.633328;;, + 58;3;-1.438651,-0.139216,-3.633328;;, + 59;3;-1.438651,-0.139216,-3.633328;;, + 60;3;-1.438651,-0.139216,-3.633328;;, + 61;3;-1.438651,-0.139216,-3.633328;;, + 62;3;-1.438651,-0.139216,-3.633328;;, + 63;3;-1.438651,-0.139216,-3.633328;;, + 64;3;-1.438651,-0.139216,-3.633328;;, + 65;3;-1.438651,-0.139216,-3.633328;;, + 66;3;-1.438651,-0.139216,-3.633328;;, + 67;3;-1.438651,-0.139216,-3.633328;;, + 68;3;-1.438651,-0.139216,-3.633328;;, + 69;3;-1.438651,-0.139216,-3.633328;;, + 70;3;-1.438651,-0.139216,-3.633328;;, + 71;3;-1.438651,-0.139216,-3.633328;;, + 72;3;-1.438651,-0.139216,-3.633328;;, + 73;3;-1.438651,-0.139216,-3.633328;;, + 74;3;-1.438651,-0.139216,-3.633328;;, + 75;3;-1.438651,-0.139216,-3.633328;;, + 76;3;-1.438651,-0.139216,-3.633328;;, + 77;3;-1.438651,-0.139216,-3.633328;;, + 78;3;-1.438651,-0.139216,-3.633328;;, + 79;3;-1.438651,-0.139216,-3.633328;;, + 80;3;-1.438651,-0.139216,-3.633328;;, + 81;3;-1.438651,-0.139216,-3.633328;;, + 82;3;-1.438651,-0.139216,-3.633328;;, + 83;3;-1.438651,-0.139216,-3.633328;;, + 84;3;-1.438651,-0.139216,-3.633328;;, + 85;3;-1.438651,-0.139216,-3.633328;;, + 86;3;-1.438651,-0.139216,-3.633328;;, + 87;3;-1.438651,-0.139216,-3.633328;;, + 88;3;-1.438651,-0.139216,-3.633328;;, + 89;3;-1.438651,-0.139216,-3.633328;;, + 90;3;-1.438651,-0.139216,-3.633328;;, + 91;3;-1.438651,-0.139216,-3.633328;;, + 92;3;-1.438651,-0.139216,-3.633328;;, + 93;3;-1.438651,-0.139216,-3.633328;;, + 94;3;-1.438651,-0.139216,-3.633328;;, + 95;3;-1.438651,-0.139216,-3.633328;;, + 96;3;-1.438651,-0.139216,-3.633328;;, + 97;3;-1.438651,-0.139216,-3.633328;;, + 98;3;-1.438651,-0.139216,-3.633328;;, + 99;3;-1.438651,-0.139216,-3.633328;;, + 100;3;-1.438651,-0.139216,-3.633328;;, + 101;3;-1.438651,-0.139216,-3.633328;;, + 102;3;-1.438651,-0.139216,-3.633328;;, + 103;3;-1.438651,-0.139216,-3.633328;;, + 104;3;-1.438651,-0.139216,-3.633328;;, + 105;3;-1.438651,-0.139216,-3.633328;;, + 106;3;-1.438651,-0.139216,-3.633328;;, + 107;3;-1.438651,-0.139216,-3.633328;;, + 108;3;-1.438651,-0.139216,-3.633328;;, + 109;3;-1.438651,-0.139216,-3.633328;;, + 110;3;-1.438651,-0.139216,-3.633328;;, + 111;3;-1.438651,-0.139216,-3.633328;;, + 112;3;-1.438651,-0.139216,-3.633328;;, + 113;3;-1.438651,-0.139216,-3.633328;;, + 114;3;-1.438651,-0.139216,-3.633328;;, + 115;3;-1.438651,-0.139216,-3.633328;;, + 116;3;-1.438651,-0.139216,-3.633328;;, + 117;3;-1.438651,-0.139216,-3.633328;;, + 118;3;-1.438651,-0.139216,-3.633328;;, + 119;3;-1.438651,-0.139216,-3.633328;;, + 120;3;-1.438651,-0.139216,-3.633328;;, + 121;3;-1.438651,-0.139216,-3.633328;;, + 122;3;-1.438651,-0.139216,-3.633328;;, + 123;3;-1.438651,-0.139216,-3.633328;;, + 124;3;-1.438651,-0.139216,-3.633328;;, + 125;3;-1.438651,-0.139216,-3.633328;;, + 126;3;-1.438651,-0.139216,-3.633328;;, + 127;3;-1.438651,-0.139216,-3.633328;;, + 128;3;-1.438651,-0.139216,-3.633328;;, + 129;3;-1.438651,-0.139216,-3.633328;;, + 130;3;-1.438651,-0.139216,-3.633328;;, + 131;3;-1.438651,-0.139216,-3.633328;;, + 132;3;-1.438651,-0.139216,-3.633328;;, + 133;3;-1.438651,-0.139216,-3.633328;;, + 134;3;-1.438651,-0.139216,-3.633328;;, + 135;3;-1.438651,-0.139216,-3.633328;;, + 136;3;-1.438651,-0.139216,-3.633328;;, + 137;3;-1.438651,-0.139216,-3.633328;;, + 138;3;-1.438651,-0.139216,-3.633328;;, + 139;3;-1.438651,-0.139216,-3.633328;;, + 140;3;-1.438651,-0.139216,-3.633328;;, + 141;3;-1.438651,-0.139216,-3.633328;;, + 142;3;-1.438651,-0.139216,-3.633328;;, + 143;3;-1.438651,-0.139216,-3.633328;;, + 144;3;-1.438651,-0.139216,-3.633328;;, + 145;3;-1.438651,-0.139216,-3.633328;;, + 146;3;-1.438651,-0.139216,-3.633328;;, + 147;3;-1.438651,-0.139216,-3.633328;;, + 148;3;-1.438651,-0.139216,-3.633328;;, + 149;3;-1.438651,-0.139216,-3.633328;;, + 150;3;-1.438651,-0.139216,-3.633328;;, + 151;3;-1.438651,-0.139216,-3.633328;;, + 152;3;-1.438651,-0.139216,-3.633328;;, + 153;3;-1.438651,-0.139216,-3.633328;;, + 154;3;-1.438651,-0.139216,-3.633328;;, + 155;3;-1.438651,-0.139216,-3.633328;;, + 156;3;-1.438651,-0.139216,-3.633328;;, + 157;3;-1.438651,-0.139216,-3.633328;;, + 158;3;-1.438651,-0.139216,-3.633328;;, + 159;3;-1.438651,-0.139216,-3.633328;;, + 160;3;-1.438651,-0.139216,-3.633328;;, + 161;3;-1.438651,-0.139216,-3.633328;;, + 162;3;-1.438651,-0.139216,-3.633328;;, + 163;3;-1.438651,-0.139216,-3.633328;;, + 164;3;-1.438651,-0.139216,-3.633328;;, + 165;3;-1.438651,-0.139216,-3.633328;;, + 166;3;-1.438651,-0.139216,-3.633328;;, + 167;3;-1.438651,-0.139216,-3.633328;;, + 168;3;-1.438651,-0.139216,-3.633328;;, + 169;3;-1.438651,-0.139216,-3.633328;;, + 170;3;-1.438651,-0.139216,-3.633328;;, + 171;3;-1.438651,-0.139216,-3.633328;;, + 172;3;-1.438651,-0.139216,-3.633328;;, + 173;3;-1.438651,-0.139216,-3.633328;;, + 174;3;-1.438651,-0.139216,-3.633328;;, + 175;3;-1.438651,-0.139216,-3.633328;;, + 176;3;-1.438651,-0.139216,-3.633328;;, + 177;3;-1.438651,-0.139216,-3.633328;;, + 178;3;-1.438651,-0.139216,-3.633328;;, + 179;3;-1.438651,-0.139216,-3.633328;;, + 180;3;-1.438651,-0.139216,-3.633328;;, + 181;3;-1.438651,-0.139216,-3.633328;;, + 182;3;-1.438651,-0.139216,-3.633328;;, + 183;3;-1.438651,-0.139216,-3.633328;;, + 184;3;-1.438651,-0.139216,-3.633328;;, + 185;3;-1.438651,-0.139216,-3.633328;;, + 186;3;-1.438651,-0.139216,-3.633328;;, + 187;3;-1.438651,-0.139216,-3.633328;;, + 188;3;-1.438651,-0.139216,-3.633328;;; + } + } + Animation { + {Armature_Head} + AnimationKey { // Rotation + 0; + 189; + 0;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 1;4;-0.000000, 0.000000, 0.706989, 0.707223;;, + 2;4;-0.000000, 0.000000, 0.706631, 0.707575;;, + 3;4;-0.000000, 0.000000, 0.706034, 0.708164;;, + 4;4;-0.000000, 0.000000, 0.705202, 0.708983;;, + 5;4;-0.000000, 0.000000, 0.704147, 0.710022;;, + 6;4;-0.000000, 0.000000, 0.702890, 0.711259;;, + 7;4;-0.000000, 0.000000, 0.701461, 0.712663;;, + 8;4;-0.000000, 0.000000, 0.699901, 0.714196;;, + 9;4;-0.000000, 0.000000, 0.698257, 0.715808;;, + 10;4;-0.000000, 0.000000, 0.696584, 0.717447;;, + 11;4;-0.000000, 0.000000, 0.694937, 0.719057;;, + 12;4;-0.000000, 0.000000, 0.693372, 0.720585;;, + 13;4;-0.000000, 0.000000, 0.691936, 0.721982;;, + 14;4;-0.000000, 0.000000, 0.690669, 0.723209;;, + 15;4;-0.000000, 0.000000, 0.689603, 0.724237;;, + 16;4;-0.000000, 0.000000, 0.688758, 0.725043;;, + 17;4;-0.000000, 0.000000, 0.688146, 0.725617;;, + 18;4;-0.000000, 0.000000, 0.687773, 0.725954;;, + 19;4;-0.000000, 0.000000, 0.687638, 0.726054;;, + 20;4;-0.000000, 0.000000, 0.687896, 0.725759;;, + 21;4;-0.000000, 0.000000, 0.688709, 0.724905;;, + 22;4;-0.000000, 0.000000, 0.690081, 0.723489;;, + 23;4;-0.000000, 0.000000, 0.692002, 0.721519;;, + 24;4;-0.000000, 0.000000, 0.694448, 0.719020;;, + 25;4;-0.000000, 0.000000, 0.697377, 0.716035;;, + 26;4;-0.000000, 0.000000, 0.700729, 0.712626;;, + 27;4;-0.000000, 0.000000, 0.704421, 0.708875;;, + 28;4;-0.000000, 0.000000, 0.708352, 0.704885;;, + 29;4;-0.000000, 0.000000, 0.712408, 0.700772;;, + 30;4;-0.000000, 0.000000, 0.716464, 0.696660;;, + 31;4;-0.000000, 0.000000, 0.720399, 0.692673;;, + 32;4;-0.000000, 0.000000, 0.724097, 0.688928;;, + 33;4;-0.000000, 0.000000, 0.727457, 0.685527;;, + 34;4;-0.000000, 0.000000, 0.730396, 0.682552;;, + 35;4;-0.000000, 0.000000, 0.732854, 0.680065;;, + 36;4;-0.000000, 0.000000, 0.734788, 0.678108;;, + 37;4;-0.000000, 0.000000, 0.736174, 0.676706;;, + 38;4;-0.000000, 0.000000, 0.737003, 0.675868;;, + 39;4;-0.000000, 0.000000, 0.737277, 0.675590;;, + 40;4;-0.000000, 0.000000, 0.737111, 0.675764;;, + 41;4;-0.000000, 0.000000, 0.736609, 0.676289;;, + 42;4;-0.000000, 0.000000, 0.735768, 0.677167;;, + 43;4;-0.000000, 0.000000, 0.734596, 0.678392;;, + 44;4;-0.000000, 0.000000, 0.733105, 0.679949;;, + 45;4;-0.000000, 0.000000, 0.731323, 0.681811;;, + 46;4;-0.000000, 0.000000, 0.729285, 0.683939;;, + 47;4;-0.000000, 0.000000, 0.727042, 0.686283;;, + 48;4;-0.000000, 0.000000, 0.724654, 0.688777;;, + 49;4;-0.000000, 0.000000, 0.722192, 0.691348;;, + 50;4;-0.000000, 0.000000, 0.719730, 0.693920;;, + 51;4;-0.000000, 0.000000, 0.717343, 0.696415;;, + 52;4;-0.000000, 0.000000, 0.715099, 0.698758;;, + 53;4;-0.000000, 0.000000, 0.713062, 0.700886;;, + 54;4;-0.000000, 0.000000, 0.711279, 0.702749;;, + 55;4;-0.000000, 0.000000, 0.709789, 0.704305;;, + 56;4;-0.000000, 0.000000, 0.708616, 0.705530;;, + 57;4;-0.000000, 0.000000, 0.707776, 0.706408;;, + 58;4;-0.000000, 0.000000, 0.707273, 0.706933;;, + 59;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 60;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 61;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 62;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 63;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 64;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 65;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 66;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 67;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 68;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 69;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 70;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 71;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 72;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 73;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 74;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 75;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 76;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 77;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 78;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 79;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 80;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 81;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 82;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 83;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 84;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 85;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 86;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 87;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 88;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 89;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 90;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 91;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 92;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 93;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 94;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 95;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 96;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 97;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 98;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 99;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 100;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 101;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 102;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 103;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 104;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 105;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 106;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 107;4;-0.000000, 0.000000, 0.702783, 0.710362;;, + 108;4;-0.000000, 0.000000, 0.689580, 0.720281;;, + 109;4;-0.000000, 0.000000, 0.667667, 0.736697;;, + 110;4;-0.000000, 0.000000, 0.638196, 0.758693;;, + 111;4;-0.000000, 0.000000, 0.603489, 0.784465;;, + 112;4;-0.000000, 0.000000, 0.566792, 0.811525;;, + 113;4;-0.000000, 0.000000, 0.531551, 0.837258;;, + 114;4;-0.000000, 0.000000, 0.500609, 0.859521;;, + 115;4;-0.000000, 0.000000, 0.475786, 0.876966;;, + 116;4;-0.000000, 0.000000, 0.457903, 0.889002;;, + 117;4; 0.000798, 0.001625, 0.444429, 0.897363;;, + 118;4; 0.003160, 0.006431, 0.433080, 0.903630;;, + 119;4; 0.006758, 0.013754, 0.424417, 0.907592;;, + 120;4; 0.010840, 0.022060, 0.418667, 0.909446;;, + 121;4; 0.014438, 0.029383, 0.415494, 0.909852;;, + 122;4; 0.016800, 0.034189, 0.414148, 0.909642;;, + 123;4; 0.017598, 0.035813, 0.413843, 0.909474;;, + 124;4; 0.017276, 0.035158, 0.413906, 0.909503;;, + 125;4; 0.016304, 0.033181, 0.414201, 0.909536;;, + 126;4; 0.014712, 0.029940, 0.414923, 0.909460;;, + 127;4; 0.012590, 0.025621, 0.416312, 0.909126;;, + 128;4; 0.010106, 0.020566, 0.418624, 0.908362;;, + 129;4; 0.007492, 0.015247, 0.422084, 0.906999;;, + 130;4; 0.005008, 0.010192, 0.426831, 0.904911;;, + 131;4; 0.002886, 0.005874, 0.432890, 0.902037;;, + 132;4; 0.001293, 0.002633, 0.440187, 0.898384;;, + 133;4; 0.000322, 0.000656, 0.448580, 0.894011;;, + 134;4;-0.000000, 0.000000, 0.457903, 0.889002;;, + 135;4;-0.000000, 0.000000, 0.471819, 0.880404;;, + 136;4;-0.000000, 0.000000, 0.494009, 0.865242;;, + 137;4;-0.000000, 0.000000, 0.523692, 0.844071;;, + 138;4;-0.000000, 0.000000, 0.558965, 0.818312;;, + 139;4;-0.000000, 0.000000, 0.596735, 0.790321;;, + 140;4;-0.000000, 0.000000, 0.633158, 0.763062;;, + 141;4;-0.000000, 0.000000, 0.664523, 0.739424;;, + 142;4;-0.000000, 0.000000, 0.688086, 0.721577;;, + 143;4;-0.000000, 0.000000, 0.702395, 0.710699;;, + 144;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 145;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 146;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 147;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 148;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 149;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 150;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 151;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 152;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 153;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 154;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 155;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 156;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 157;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 158;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 159;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 160;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 161;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 162;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 163;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 164;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, + 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3;-0.000000, 4.052526, 3.788038;;, + 1;3;-0.000000, 4.052526, 3.788038;;, + 2;3;-0.000000, 4.052526, 3.788038;;, + 3;3;-0.000000, 4.052526, 3.788038;;, + 4;3;-0.000000, 4.052526, 3.788038;;, + 5;3;-0.000000, 4.052526, 3.788038;;, + 6;3;-0.000000, 4.052526, 3.788038;;, + 7;3;-0.000000, 4.052526, 3.788038;;, + 8;3;-0.000000, 4.052526, 3.788038;;, + 9;3;-0.000000, 4.052526, 3.788038;;, + 10;3;-0.000000, 4.052526, 3.788038;;, + 11;3;-0.000000, 4.052526, 3.788038;;, + 12;3;-0.000000, 4.052526, 3.788038;;, + 13;3;-0.000000, 4.052526, 3.788038;;, + 14;3;-0.000000, 4.052526, 3.788038;;, + 15;3;-0.000000, 4.052526, 3.788038;;, + 16;3;-0.000000, 4.052526, 3.788038;;, + 17;3;-0.000000, 4.052526, 3.788038;;, + 18;3;-0.000000, 4.052526, 3.788038;;, + 19;3;-0.000000, 4.052526, 3.788038;;, + 20;3;-0.000000, 4.052526, 3.788038;;, + 21;3;-0.000000, 4.052526, 3.788038;;, + 22;3;-0.000000, 4.052526, 3.788038;;, + 23;3;-0.000000, 4.052526, 3.788038;;, + 24;3;-0.000000, 4.052526, 3.788038;;, + 25;3;-0.000000, 4.052526, 3.788038;;, + 26;3;-0.000000, 4.052526, 3.788038;;, + 27;3;-0.000000, 4.052526, 3.788038;;, + 28;3;-0.000000, 4.052526, 3.788038;;, + 29;3;-0.000000, 4.052526, 3.788038;;, + 30;3;-0.000000, 4.052526, 3.788038;;, + 31;3;-0.000000, 4.052526, 3.788038;;, + 32;3;-0.000000, 4.052526, 3.788038;;, + 33;3;-0.000000, 4.052526, 3.788038;;, + 34;3;-0.000000, 4.052526, 3.788038;;, + 35;3;-0.000000, 4.052526, 3.788038;;, + 36;3;-0.000000, 4.052526, 3.788038;;, + 37;3;-0.000000, 4.052526, 3.788038;;, + 38;3;-0.000000, 4.052526, 3.788038;;, + 39;3;-0.000000, 4.052526, 3.788038;;, + 40;3;-0.000000, 4.052526, 3.788038;;, + 41;3;-0.000000, 4.052526, 3.788038;;, + 42;3;-0.000000, 4.052526, 3.788038;;, + 43;3;-0.000000, 4.052526, 3.788038;;, + 44;3;-0.000000, 4.052526, 3.788038;;, + 45;3;-0.000000, 4.052526, 3.788038;;, + 46;3;-0.000000, 4.052526, 3.788038;;, + 47;3;-0.000000, 4.052526, 3.788038;;, + 48;3;-0.000000, 4.052526, 3.788038;;, + 49;3;-0.000000, 4.052526, 3.788038;;, + 50;3;-0.000000, 4.052526, 3.788038;;, + 51;3;-0.000000, 4.052526, 3.788038;;, + 52;3;-0.000000, 4.052526, 3.788038;;, + 53;3;-0.000000, 4.052526, 3.788038;;, + 54;3;-0.000000, 4.052526, 3.788038;;, + 55;3;-0.000000, 4.052526, 3.788038;;, + 56;3;-0.000000, 4.052526, 3.788038;;, + 57;3;-0.000000, 4.052526, 3.788038;;, + 58;3;-0.000000, 4.052526, 3.788038;;, + 59;3;-0.000000, 4.052526, 3.788038;;, + 60;3;-0.000000, 4.052526, 3.788038;;, + 61;3;-0.000000, 4.052526, 3.788038;;, + 62;3;-0.000000, 4.052526, 3.788038;;, + 63;3;-0.000000, 4.052526, 3.788038;;, + 64;3;-0.000000, 4.052526, 3.788038;;, + 65;3;-0.000000, 4.052526, 3.788038;;, + 66;3;-0.000000, 4.052526, 3.788038;;, + 67;3;-0.000000, 4.052526, 3.788038;;, + 68;3;-0.000000, 4.052526, 3.788038;;, + 69;3;-0.000000, 4.052526, 3.788038;;, + 70;3;-0.000000, 4.052526, 3.788038;;, + 71;3;-0.000000, 4.052526, 3.788038;;, + 72;3;-0.000000, 4.052526, 3.788038;;, + 73;3;-0.000000, 4.052526, 3.788038;;, + 74;3;-0.000000, 4.052526, 3.788038;;, + 75;3;-0.000000, 4.052526, 3.788038;;, + 76;3;-0.000000, 4.052526, 3.788038;;, + 77;3;-0.000000, 4.052526, 3.788038;;, + 78;3;-0.000000, 4.052526, 3.788038;;, + 79;3;-0.000000, 4.052526, 3.788038;;, + 80;3;-0.000000, 4.052526, 3.788038;;, + 81;3;-0.000000, 4.052526, 3.788038;;, + 82;3;-0.000000, 4.052526, 3.788038;;, + 83;3;-0.000000, 4.052526, 3.788038;;, + 84;3;-0.000000, 4.052526, 3.788038;;, + 85;3;-0.000000, 4.052526, 3.788038;;, + 86;3;-0.000000, 4.052526, 3.788038;;, + 87;3;-0.000000, 4.052526, 3.788038;;, + 88;3;-0.000000, 4.052526, 3.788038;;, + 89;3;-0.000000, 4.052526, 3.788038;;, + 90;3;-0.000000, 4.052526, 3.788038;;, + 91;3;-0.000000, 4.052526, 3.788038;;, + 92;3;-0.000000, 4.052526, 3.788038;;, + 93;3;-0.000000, 4.052526, 3.788038;;, + 94;3;-0.000000, 4.052526, 3.788038;;, + 95;3;-0.000000, 4.052526, 3.788038;;, + 96;3;-0.000000, 4.052526, 3.788038;;, + 97;3;-0.000000, 4.052526, 3.788038;;, + 98;3;-0.000000, 4.052526, 3.788038;;, + 99;3;-0.000000, 4.052526, 3.788038;;, + 100;3;-0.000000, 4.052526, 3.788038;;, + 101;3;-0.000000, 4.052526, 3.788038;;, + 102;3;-0.000000, 4.052526, 3.788038;;, + 103;3;-0.000000, 4.052526, 3.788038;;, + 104;3;-0.000000, 4.052526, 3.788038;;, + 105;3;-0.000000, 4.052526, 3.788038;;, + 106;3;-0.000000, 4.052526, 3.788038;;, + 107;3; 0.000000, 3.932556, 3.817408;;, + 108;3; 0.000000, 3.578606, 3.905683;;, + 109;3; 0.000000, 3.015022, 4.049008;;, + 110;3; 0.000000, 2.290478, 4.236245;;, + 111;3; 0.000000, 1.477738, 4.448205;;, + 112;3; 0.000000, 0.664999, 4.660165;;, + 113;3; 0.000000,-0.059545, 4.847402;;, + 114;3; 0.000000,-0.623131, 4.990727;;, + 115;3; 0.000000,-0.977079, 5.079002;;, + 116;3; 0.000000,-1.097050, 5.108373;;, + 117;3; 0.000000,-1.097050, 5.108373;;, + 118;3; 0.000000,-1.097050, 5.108373;;, + 119;3; 0.000000,-1.097050, 5.108373;;, + 120;3; 0.000000,-1.097050, 5.108373;;, + 121;3; 0.000000,-1.097050, 5.108373;;, + 122;3; 0.000000,-1.097050, 5.108373;;, + 123;3; 0.000000,-1.097050, 5.108373;;, + 124;3; 0.000000,-1.097050, 5.108373;;, + 125;3; 0.000000,-1.097050, 5.108373;;, + 126;3; 0.000000,-1.097050, 5.108373;;, + 127;3; 0.000000,-1.097050, 5.108373;;, + 128;3; 0.000000,-1.097050, 5.108373;;, + 129;3; 0.000000,-1.097050, 5.108373;;, + 130;3; 0.000000,-1.097050, 5.108373;;, + 131;3; 0.000000,-1.097050, 5.108373;;, + 132;3; 0.000000,-1.097050, 5.108373;;, + 133;3; 0.000000,-1.097050, 5.108373;;, + 134;3; 0.000000,-1.097050, 5.108373;;, + 135;3; 0.000000,-0.978723, 5.079034;;, + 136;3; 0.000000,-0.635073, 4.990970;;, + 137;3; 0.000000,-0.094211, 4.848135;;, + 138;3; 0.000000, 0.599206, 4.661588;;, + 139;3; 0.000000, 1.383935, 4.450237;;, + 140;3; 0.000000, 2.185637, 4.238466;;, + 141;3; 0.000001, 2.924005, 4.050854;;, + 142;3; 0.000001, 3.521967, 3.906768;;, + 143;3; 0.000001, 3.914200, 3.817738;;, + 144;3; 0.000001, 4.052526, 3.788038;;, + 145;3; 0.000001, 4.052526, 3.788038;;, + 146;3; 0.000001, 4.052526, 3.788038;;, + 147;3; 0.000001, 4.052526, 3.788038;;, + 148;3; 0.000001, 4.052526, 3.788038;;, + 149;3; 0.000001, 4.052526, 3.788038;;, + 150;3; 0.000001, 4.052526, 3.788038;;, + 151;3; 0.000001, 4.052526, 3.788038;;, + 152;3; 0.000001, 4.052526, 3.788038;;, + 153;3; 0.000001, 4.052526, 3.788038;;, + 154;3; 0.000001, 4.052526, 3.788038;;, + 155;3; 0.000001, 4.052526, 3.788038;;, + 156;3; 0.000001, 4.052526, 3.788038;;, + 157;3; 0.000001, 4.052526, 3.788038;;, + 158;3; 0.000001, 4.052526, 3.788038;;, + 159;3; 0.000001, 4.052526, 3.788038;;, + 160;3; 0.000001, 4.052526, 3.788038;;, + 161;3; 0.000001, 4.052526, 3.788038;;, + 162;3; 0.000001, 4.052526, 3.788038;;, + 163;3; 0.000001, 4.052526, 3.788038;;, + 164;3; 0.000001, 4.052526, 3.788038;;, + 165;3; 0.000001, 4.052526, 3.788038;;, + 166;3; 0.000001, 4.052526, 3.788038;;, + 167;3; 0.000001, 4.052526, 3.788038;;, + 168;3; 0.000001, 4.052526, 3.788038;;, + 169;3; 0.000001, 4.052526, 3.788038;;, + 170;3; 0.000001, 4.052526, 3.788038;;, + 171;3; 0.000001, 4.052526, 3.788038;;, + 172;3; 0.000001, 4.052526, 3.788038;;, + 173;3; 0.000001, 4.052526, 3.788038;;, + 174;3; 0.000001, 4.052526, 3.788038;;, + 175;3; 0.000001, 4.052526, 3.788038;;, + 176;3; 0.000001, 4.052526, 3.788038;;, + 177;3; 0.000001, 4.052526, 3.788038;;, + 178;3; 0.000001, 4.052526, 3.788038;;, + 179;3; 0.000001, 4.052526, 3.788038;;, + 180;3; 0.000001, 4.052526, 3.788038;;, + 181;3; 0.000001, 4.052526, 3.788038;;, + 182;3; 0.000001, 4.052526, 3.788038;;, + 183;3; 0.000001, 4.052526, 3.788038;;, + 184;3; 0.000001, 4.052526, 3.788038;;, + 185;3; 0.000001, 4.052526, 3.788038;;, + 186;3; 0.000001, 4.052526, 3.788038;;, + 187;3; 0.000001, 4.052526, 3.788038;;, + 188;3; 0.000001, 4.052526, 3.788038;;; + } + } +} // End of AnimationSet ArmatureAction +AnimationSet Default_Action { + Animation { + {sheep} + AnimationKey { // Rotation + 0; + 189; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 189; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 189; + 0;3; 0.000000, 0.000000,-0.000000;;, + 1;3; 0.000000, 0.000000,-0.000000;;, + 2;3; 0.000000, 0.000000,-0.000000;;, + 3;3; 0.000000, 0.000000,-0.000000;;, + 4;3; 0.000000, 0.000000,-0.000000;;, + 5;3; 0.000000, 0.000000,-0.000000;;, + 6;3; 0.000000, 0.000000,-0.000000;;, + 7;3; 0.000000, 0.000000,-0.000000;;, + 8;3; 0.000000, 0.000000,-0.000000;;, + 9;3; 0.000000, 0.000000,-0.000000;;, + 10;3; 0.000000, 0.000000,-0.000000;;, + 11;3; 0.000000, 0.000000,-0.000000;;, + 12;3; 0.000000, 0.000000,-0.000000;;, + 13;3; 0.000000, 0.000000,-0.000000;;, + 14;3; 0.000000, 0.000000,-0.000000;;, + 15;3; 0.000000, 0.000000,-0.000000;;, + 16;3; 0.000000, 0.000000,-0.000000;;, + 17;3; 0.000000, 0.000000,-0.000000;;, + 18;3; 0.000000, 0.000000,-0.000000;;, + 19;3; 0.000000, 0.000000,-0.000000;;, + 20;3; 0.000000, 0.000000,-0.000000;;, + 21;3; 0.000000, 0.000000,-0.000000;;, + 22;3; 0.000000, 0.000000,-0.000000;;, + 23;3; 0.000000, 0.000000,-0.000000;;, + 24;3; 0.000000, 0.000000,-0.000000;;, + 25;3; 0.000000, 0.000000,-0.000000;;, + 26;3; 0.000000, 0.000000,-0.000000;;, + 27;3; 0.000000, 0.000000,-0.000000;;, + 28;3; 0.000000, 0.000000,-0.000000;;, + 29;3; 0.000000, 0.000000,-0.000000;;, + 30;3; 0.000000, 0.000000,-0.000000;;, + 31;3; 0.000000, 0.000000,-0.000000;;, + 32;3; 0.000000, 0.000000,-0.000000;;, + 33;3; 0.000000, 0.000000,-0.000000;;, + 34;3; 0.000000, 0.000000,-0.000000;;, + 35;3; 0.000000, 0.000000,-0.000000;;, + 36;3; 0.000000, 0.000000,-0.000000;;, + 37;3; 0.000000, 0.000000,-0.000000;;, + 38;3; 0.000000, 0.000000,-0.000000;;, + 39;3; 0.000000, 0.000000,-0.000000;;, + 40;3; 0.000000, 0.000000,-0.000000;;, + 41;3; 0.000000, 0.000000,-0.000000;;, + 42;3; 0.000000, 0.000000,-0.000000;;, + 43;3; 0.000000, 0.000000,-0.000000;;, + 44;3; 0.000000, 0.000000,-0.000000;;, + 45;3; 0.000000, 0.000000,-0.000000;;, + 46;3; 0.000000, 0.000000,-0.000000;;, + 47;3; 0.000000, 0.000000,-0.000000;;, + 48;3; 0.000000, 0.000000,-0.000000;;, + 49;3; 0.000000, 0.000000,-0.000000;;, + 50;3; 0.000000, 0.000000,-0.000000;;, + 51;3; 0.000000, 0.000000,-0.000000;;, + 52;3; 0.000000, 0.000000,-0.000000;;, + 53;3; 0.000000, 0.000000,-0.000000;;, + 54;3; 0.000000, 0.000000,-0.000000;;, + 55;3; 0.000000, 0.000000,-0.000000;;, + 56;3; 0.000000, 0.000000,-0.000000;;, + 57;3; 0.000000, 0.000000,-0.000000;;, + 58;3; 0.000000, 0.000000,-0.000000;;, + 59;3; 0.000000, 0.000000,-0.000000;;, + 60;3; 0.000000, 0.000000,-0.000000;;, + 61;3; 0.000000, 0.000000,-0.000000;;, + 62;3; 0.000000, 0.000000,-0.000000;;, + 63;3; 0.000000, 0.000000,-0.000000;;, + 64;3; 0.000000, 0.000000,-0.000000;;, + 65;3; 0.000000, 0.000000,-0.000000;;, + 66;3; 0.000000, 0.000000,-0.000000;;, + 67;3; 0.000000, 0.000000,-0.000000;;, + 68;3; 0.000000, 0.000000,-0.000000;;, + 69;3; 0.000000, 0.000000,-0.000000;;, + 70;3; 0.000000, 0.000000,-0.000000;;, + 71;3; 0.000000, 0.000000,-0.000000;;, + 72;3; 0.000000, 0.000000,-0.000000;;, + 73;3; 0.000000, 0.000000,-0.000000;;, + 74;3; 0.000000, 0.000000,-0.000000;;, + 75;3; 0.000000, 0.000000,-0.000000;;, + 76;3; 0.000000, 0.000000,-0.000000;;, + 77;3; 0.000000, 0.000000,-0.000000;;, + 78;3; 0.000000, 0.000000,-0.000000;;, + 79;3; 0.000000, 0.000000,-0.000000;;, + 80;3; 0.000000, 0.000000,-0.000000;;, + 81;3; 0.000000, 0.000000,-0.000000;;, + 82;3; 0.000000, 0.000000,-0.000000;;, + 83;3; 0.000000, 0.000000,-0.000000;;, + 84;3; 0.000000, 0.000000,-0.000000;;, + 85;3; 0.000000, 0.000000,-0.000000;;, + 86;3; 0.000000, 0.000000,-0.000000;;, + 87;3; 0.000000, 0.000000,-0.000000;;, + 88;3; 0.000000, 0.000000,-0.000000;;, + 89;3; 0.000000, 0.000000,-0.000000;;, + 90;3; 0.000000, 0.000000,-0.000000;;, + 91;3; 0.000000, 0.000000,-0.000000;;, + 92;3; 0.000000, 0.000000,-0.000000;;, + 93;3; 0.000000, 0.000000,-0.000000;;, + 94;3; 0.000000, 0.000000,-0.000000;;, + 95;3; 0.000000, 0.000000,-0.000000;;, + 96;3; 0.000000, 0.000000,-0.000000;;, + 97;3; 0.000000, 0.000000,-0.000000;;, + 98;3; 0.000000, 0.000000,-0.000000;;, + 99;3; 0.000000, 0.000000,-0.000000;;, + 100;3; 0.000000, 0.000000,-0.000000;;, + 101;3; 0.000000, 0.000000,-0.000000;;, + 102;3; 0.000000, 0.000000,-0.000000;;, + 103;3; 0.000000, 0.000000,-0.000000;;, + 104;3; 0.000000, 0.000000,-0.000000;;, + 105;3; 0.000000, 0.000000,-0.000000;;, + 106;3; 0.000000, 0.000000,-0.000000;;, + 107;3; 0.000000, 0.000000,-0.000000;;, + 108;3; 0.000000, 0.000000,-0.000000;;, + 109;3; 0.000000, 0.000000,-0.000000;;, + 110;3; 0.000000, 0.000000,-0.000000;;, + 111;3; 0.000000, 0.000000,-0.000000;;, + 112;3; 0.000000, 0.000000,-0.000000;;, + 113;3; 0.000000, 0.000000,-0.000000;;, + 114;3; 0.000000, 0.000000,-0.000000;;, + 115;3; 0.000000, 0.000000,-0.000000;;, + 116;3; 0.000000, 0.000000,-0.000000;;, + 117;3; 0.000000, 0.000000,-0.000000;;, + 118;3; 0.000000, 0.000000,-0.000000;;, + 119;3; 0.000000, 0.000000,-0.000000;;, + 120;3; 0.000000, 0.000000,-0.000000;;, + 121;3; 0.000000, 0.000000,-0.000000;;, + 122;3; 0.000000, 0.000000,-0.000000;;, + 123;3; 0.000000, 0.000000,-0.000000;;, + 124;3; 0.000000, 0.000000,-0.000000;;, + 125;3; 0.000000, 0.000000,-0.000000;;, + 126;3; 0.000000, 0.000000,-0.000000;;, + 127;3; 0.000000, 0.000000,-0.000000;;, + 128;3; 0.000000, 0.000000,-0.000000;;, + 129;3; 0.000000, 0.000000,-0.000000;;, + 130;3; 0.000000, 0.000000,-0.000000;;, + 131;3; 0.000000, 0.000000,-0.000000;;, + 132;3; 0.000000, 0.000000,-0.000000;;, + 133;3; 0.000000, 0.000000,-0.000000;;, + 134;3; 0.000000, 0.000000,-0.000000;;, + 135;3; 0.000000, 0.000000,-0.000000;;, + 136;3; 0.000000, 0.000000,-0.000000;;, + 137;3; 0.000000, 0.000000,-0.000000;;, + 138;3; 0.000000, 0.000000,-0.000000;;, + 139;3; 0.000000, 0.000000,-0.000000;;, + 140;3; 0.000000, 0.000000,-0.000000;;, + 141;3; 0.000000, 0.000000,-0.000000;;, + 142;3; 0.000000, 0.000000,-0.000000;;, + 143;3; 0.000000, 0.000000,-0.000000;;, + 144;3; 0.000000, 0.000000,-0.000000;;, + 145;3; 0.000000, 0.000000,-0.000000;;, + 146;3; 0.000000, 0.000000,-0.000000;;, + 147;3; 0.000000, 0.000000,-0.000000;;, + 148;3; 0.000000, 0.000000,-0.000000;;, + 149;3; 0.000000, 0.000000,-0.000000;;, + 150;3; 0.000000, 0.000000,-0.000000;;, + 151;3; 0.000000, 0.000000,-0.000000;;, + 152;3; 0.000000, 0.000000,-0.000000;;, + 153;3; 0.000000, 0.000000,-0.000000;;, + 154;3; 0.000000, 0.000000,-0.000000;;, + 155;3; 0.000000, 0.000000,-0.000000;;, + 156;3; 0.000000, 0.000000,-0.000000;;, + 157;3; 0.000000, 0.000000,-0.000000;;, + 158;3; 0.000000, 0.000000,-0.000000;;, + 159;3; 0.000000, 0.000000,-0.000000;;, + 160;3; 0.000000, 0.000000,-0.000000;;, + 161;3; 0.000000, 0.000000,-0.000000;;, + 162;3; 0.000000, 0.000000,-0.000000;;, + 163;3; 0.000000, 0.000000,-0.000000;;, + 164;3; 0.000000, 0.000000,-0.000000;;, + 165;3; 0.000000, 0.000000,-0.000000;;, + 166;3; 0.000000, 0.000000,-0.000000;;, + 167;3; 0.000000, 0.000000,-0.000000;;, + 168;3; 0.000000, 0.000000,-0.000000;;, + 169;3; 0.000000, 0.000000,-0.000000;;, + 170;3; 0.000000, 0.000000,-0.000000;;, + 171;3; 0.000000, 0.000000,-0.000000;;, + 172;3; 0.000000, 0.000000,-0.000000;;, + 173;3; 0.000000, 0.000000,-0.000000;;, + 174;3; 0.000000, 0.000000,-0.000000;;, + 175;3; 0.000000, 0.000000,-0.000000;;, + 176;3; 0.000000, 0.000000,-0.000000;;, + 177;3; 0.000000, 0.000000,-0.000000;;, + 178;3; 0.000000, 0.000000,-0.000000;;, + 179;3; 0.000000, 0.000000,-0.000000;;, + 180;3; 0.000000, 0.000000,-0.000000;;, + 181;3; 0.000000, 0.000000,-0.000000;;, + 182;3; 0.000000, 0.000000,-0.000000;;, + 183;3; 0.000000, 0.000000,-0.000000;;, + 184;3; 0.000000, 0.000000,-0.000000;;, + 185;3; 0.000000, 0.000000,-0.000000;;, + 186;3; 0.000000, 0.000000,-0.000000;;, + 187;3; 0.000000, 0.000000,-0.000000;;, + 188;3; 0.000000, 0.000000,-0.000000;;; + } + } +} // End of AnimationSet Default_Action diff --git a/sheep/sounds/creatures_shears.ogg b/sheep/sounds/creatures_shears.ogg new file mode 100644 index 0000000..89de9cf Binary files /dev/null and b/sheep/sounds/creatures_shears.ogg differ diff --git a/sheep/sounds/creatures_sheep.1.ogg b/sheep/sounds/creatures_sheep.1.ogg new file mode 100644 index 0000000..05ba95b Binary files /dev/null and b/sheep/sounds/creatures_sheep.1.ogg differ diff --git a/sheep/sounds/creatures_sheep.2.ogg b/sheep/sounds/creatures_sheep.2.ogg new file mode 100644 index 0000000..3c51d86 Binary files /dev/null and b/sheep/sounds/creatures_sheep.2.ogg differ diff --git a/sheep/sounds/creatures_sheep.3.ogg b/sheep/sounds/creatures_sheep.3.ogg new file mode 100644 index 0000000..741084d Binary files /dev/null and b/sheep/sounds/creatures_sheep.3.ogg differ diff --git a/sheep/textures/creatures_egg_sheep.png b/sheep/textures/creatures_egg_sheep.png new file mode 100644 index 0000000..7c82dc8 Binary files /dev/null and b/sheep/textures/creatures_egg_sheep.png differ diff --git a/sheep/textures/creatures_shears.png b/sheep/textures/creatures_shears.png new file mode 100644 index 0000000..6d74de3 Binary files /dev/null and b/sheep/textures/creatures_shears.png differ diff --git a/sheep/textures/creatures_sheep.png b/sheep/textures/creatures_sheep.png new file mode 100644 index 0000000..910d8b9 Binary files /dev/null and b/sheep/textures/creatures_sheep.png differ diff --git a/sheep/textures/creatures_sheep_shaved.png b/sheep/textures/creatures_sheep_shaved.png new file mode 100644 index 0000000..8a930a5 Binary files /dev/null and b/sheep/textures/creatures_sheep_shaved.png differ diff --git a/zombie/LICENSE.txt b/zombie/LICENSE.txt new file mode 100644 index 0000000..d3eb5aa --- /dev/null +++ b/zombie/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2015 BlockMen + + +This software is provided 'as-is', without any express or implied warranty. In no +event will the authors be held liable for any damages arising from the use of +this software. + +Permission is granted to anyone to use this software for any purpose, including +commercial applications, and to alter it and redistribute it freely, subject to the +following restrictions: + + +1. The origin of this software must not be misrepresented; you must not +claim that you wrote the original software. If you use this software in a +product, an acknowledgment in the product documentation is required. + +2. Altered source versions must be plainly marked as such, and must not +be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/zombie/README.txt b/zombie/README.txt new file mode 100644 index 0000000..3a9d9f1 --- /dev/null +++ b/zombie/README.txt @@ -0,0 +1,32 @@ +Zombie for Creatures MOB-Engine +=============================== +Copyright (c) 2015 BlockMen + +Version: 2.0 Beta + + +Adds zombies to Minetest (requires Creatures MOB-Engine). +Zombies can spawn to every day-time in the world as long there it is dark enough. +You will find some in caves, dark forests and ofc a lot at night. +If they notice any player near they will attack. +Zombies have 20 HP (like players) and drop rotten flesh randomly. + + +License: +~~~~~~~~ +Code: +(c) Copyright 2015 BlockMen; modified zlib-License +see "LICENSE.txt" for details. + +Media(textures and meshes/models): +(c) Copyright (2014-2015) BlockMen; CC-BY-SA 3.0 + +Sounds: +- creatures_zombie.1.ogg, Under7dude(https://freesound.org/people/Under7dude) CC0 +- creatures_zombie.2.ogg, Under7dude(https://freesound.org/people/Under7dude) CC0 +- creatures_zombie.3.ogg, Under7dude(https://freesound.org/people/Under7dude) CC0 +- creatures_zombie_death.ogg, Under7dude(https://freesound.org/people/Under7dude) CC0 + +Github: +~~~~~~~ +https://github.com/BlockMen/cme/zombie diff --git a/zombie/depends.txt b/zombie/depends.txt new file mode 100644 index 0000000..6d72c29 --- /dev/null +++ b/zombie/depends.txt @@ -0,0 +1,2 @@ +creatures +default diff --git a/zombie/init.lua b/zombie/init.lua new file mode 100644 index 0000000..0841cee --- /dev/null +++ b/zombie/init.lua @@ -0,0 +1,115 @@ +--= Zombie for Creatures MOB-Engine (cme) =-- +-- Copyright (c) 2015 BlockMen +-- +-- init.lua +-- +-- This software is provided 'as-is', without any express or implied warranty. In no +-- event will the authors be held liable for any damages arising from the use of +-- this software. +-- +-- Permission is granted to anyone to use this software for any purpose, including +-- commercial applications, and to alter it and redistribute it freely, subject to the +-- following restrictions: +-- +-- 1. The origin of this software must not be misrepresented; you must not +-- claim that you wrote the original software. If you use this software in a +-- product, an acknowledgment in the product documentation is required. +-- 2. Altered source versions must be plainly marked as such, and must not +-- be misrepresented as being the original software. +-- 3. This notice may not be removed or altered from any source distribution. +-- + + +core.register_craftitem(":creatures:rotten_flesh", { + description = "Rotten Flesh", + inventory_image = "creatures_rotten_flesh.png", + on_use = core.item_eat(1), +}) + +local def = { + -- general + name = "creatures:zombie", + stats = { + hp = 20, + lifetime = 300, -- 5 Minutes + can_jump = 1, + can_swim = true, + can_burn = true, + has_falldamage = true, + has_kockback = true, + light = {min = 0, max = 8}, + hostile = true, + }, + + modes = { + idle = {chance = 0.7, duration = 3, update_yaw = 6},--dur = 8 is gut + walk = {chance = 0.3, duration = 5.5, moving_speed = 1.5}, + -- special modes + attack = {chance = 0, moving_speed = 2.5}, + }, + + model = { + mesh = "zombie.b3d", + textures = {"creatures_zombie.png"}, + collisionbox = {-0.25, -0.01, -0.3, 0.25, 1.75, 0.3}, + rotation = -90.0, + animations = { + idle = {start = 0, stop = 80, speed = 15}, + walk = {start = 168, stop = 188, speed = 15.5}, + attack = {start = 168, stop = 188, speed = 25}, + -- death + }, + }, + + sounds = { + on_damage = {name = "creatures_zombie_hit", gain = 0.4, distance = 10}, + on_death = {name = "creatures_zombie_death", gain = 0.7, distance = 10}, + swim = {name = "creatures_splash", gain = 1.0, distance = 10}, + random = { + idle = {name = "creatures_zombie", gain = 0.7, distance = 12}, + }, + }, + + combat = { + attack_damage = 1, -- in hp + attack_speed = 0.6, -- time in seconds between hits + attack_radius = 1.1, -- radius of hit range + + search_enemy = true, + search_timer = 2, + search_radius = 12, --in nodes + search_type = "player", --types = {all, hostile, nonhostile, player, mates} + --search_xray = false, -- can see through walls? + }, + + spawning = { + abm_nodes = { + spawn_on = {"default:stone", "default:dirt_with_grass", "default:dirt", + "default:cobblestone", "default:mossycobble", "group:sand"}, + }, + abm_interval = 36, + abm_chance = 7600, + max_number = 1, -- per mapblock + number = 2, + --time_range = {min = 18500, max = 4000}, -- 0-24000 + light = {min = 0, max = 8}, + height_limit = {min = -200, max = 50}, + + spawn_egg = { + description = "Zombie Spawn-Egg", + texture = "creatures_spawn_egg.png^[colorize:#2c9a", + }, + + spawner = { + range = 8, -- defines area withing mobs are spawned + number = 6, -- maxmimum number of mobs spawned in area defined via range + light = {min = 0, max = 8}, -- additional light check + } + }, + + drops = { + {"creatures:rotten_flesh", {min = 1, max = 2}, chance = 0.7}, + } +} + +creatures.register_mob(def) diff --git a/zombie/models/zombie.b3d b/zombie/models/zombie.b3d new file mode 100644 index 0000000..80b6acd Binary files /dev/null and b/zombie/models/zombie.b3d differ diff --git a/zombie/sounds/creatures_zombie.1.ogg b/zombie/sounds/creatures_zombie.1.ogg new file mode 100644 index 0000000..501395e Binary files /dev/null and b/zombie/sounds/creatures_zombie.1.ogg differ diff --git a/zombie/sounds/creatures_zombie.2.ogg b/zombie/sounds/creatures_zombie.2.ogg new file mode 100644 index 0000000..88b052f Binary files /dev/null and b/zombie/sounds/creatures_zombie.2.ogg differ diff --git a/zombie/sounds/creatures_zombie.3.ogg b/zombie/sounds/creatures_zombie.3.ogg new file mode 100644 index 0000000..79b886b Binary files /dev/null and b/zombie/sounds/creatures_zombie.3.ogg differ diff --git a/zombie/sounds/creatures_zombie_death.ogg b/zombie/sounds/creatures_zombie_death.ogg new file mode 100644 index 0000000..ded4ddc Binary files /dev/null and b/zombie/sounds/creatures_zombie_death.ogg differ diff --git a/zombie/sounds/creatures_zombie_hit.ogg b/zombie/sounds/creatures_zombie_hit.ogg new file mode 100644 index 0000000..30217b1 Binary files /dev/null and b/zombie/sounds/creatures_zombie_hit.ogg differ diff --git a/zombie/textures/creatures_egg_zombie.png b/zombie/textures/creatures_egg_zombie.png new file mode 100644 index 0000000..335864f Binary files /dev/null and b/zombie/textures/creatures_egg_zombie.png differ diff --git a/zombie/textures/creatures_rotten_flesh.png b/zombie/textures/creatures_rotten_flesh.png new file mode 100644 index 0000000..bed874b Binary files /dev/null and b/zombie/textures/creatures_rotten_flesh.png differ diff --git a/zombie/textures/creatures_zombie.png b/zombie/textures/creatures_zombie.png new file mode 100644 index 0000000..13f8284 Binary files /dev/null and b/zombie/textures/creatures_zombie.png differ